Skip to content

Commit

Permalink
Upgrade Docker action (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ausias-armesto authored Sep 18, 2024
1 parent a8a894f commit 47c720d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo "PR_VERSION=${PR_VERSION}" >> $GITHUB_OUTPUT
- name: Build and push docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ vars.DOCKER_IMAGE_REGISTRY }}/${{ vars.DOCKER_IMAGE_NAME }}:${{ steps.variables.outputs.PR_VERSION }}
2 changes: 1 addition & 1 deletion .github/workflows/merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
driver: kubernetes

- name: Build and push docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ vars.DOCKER_IMAGE_REGISTRY }}/${{ vars.DOCKER_IMAGE_NAME }}:latest
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
tag_name: v${{ steps.environment.outputs.release_version }}

- name: Build and push docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ vars.DOCKER_IMAGE_REGISTRY }}/${{ vars.DOCKER_IMAGE_NAME }}:${{ steps.environment.outputs.release_version }}
Expand Down

0 comments on commit 47c720d

Please sign in to comment.