Skip to content

Commit

Permalink
chore/bump github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dabeeeenster committed Feb 27, 2024
1 parent 32a89af commit 85e46e3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
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 85e46e3

Please sign in to comment.