Skip to content

Commit

Permalink
Merge pull request #89 from Flagsmith/chore/bump-github-actions
Browse files Browse the repository at this point in the history
chore: bump github actions
  • Loading branch information
dabeeeenster authored Feb 27, 2024
2 parents 087747a + 6f45087 commit 71f547f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/actions/sse-deploy-ecs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
shell: bash

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ inputs.aws_access_key_id }}
aws-secret-access-key: ${{ inputs.aws_secret_access_key }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/docker-publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:

steps:
- name: Cloning repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Docker metadata
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: |
flagsmith/edge-proxy
Expand All @@ -30,20 +30,20 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
file: Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

steps:
- name: Cloning repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sse-deploy-production-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Cloning repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Deploy SSE to Production
uses: ./.github/actions/sse-deploy-ecs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sse-deploy-staging-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Cloning repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Deploy SSE to Staging
uses: ./.github/actions/sse-deploy-ecs
Expand Down

0 comments on commit 71f547f

Please sign in to comment.