Skip to content

Commit

Permalink
ci: bump docker action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thecristen committed Oct 10, 2023
1 parent 09f99fc commit b4fec18
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/use-deploy-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Docker metadata
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ secrets.docker-repo }}
tags: |
Expand All @@ -57,17 +57,17 @@ jobs:
type=raw,priority=900,value=${{ inputs.extra-docker-tag }},enable=${{ inputs.extra-docker-tag != ''}}
- name: Login to AWS ECR
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.docker-repo }}
username: ${{ secrets.aws-access-key-id }}
password: ${{ secrets.aws-secret-access-key }}

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

- name: Build image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
load: true
tags: assets-image
Expand All @@ -84,7 +84,7 @@ jobs:
bash upload_assets.sh assets-image
- name: Push to ECR
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
id: docker-build
with:
push: true
Expand Down

0 comments on commit b4fec18

Please sign in to comment.