Skip to content

Commit

Permalink
Upgrade build-push-action everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
cscetbon committed Feb 27, 2023
1 parent b055f3a commit 55f9423
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bootstrap-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4
with:
context: docker/bootstrap
tags: ghcr.io/cscetbon/casskop-bootstrap:${{ github.event.inputs.alias }}
Expand All @@ -43,7 +43,7 @@ jobs:
IMAGE_TO_TEST=${{ env.IMAGE }} ./docker/bootstrap/dgoss/runChecks.sh
- name: Push Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4
with:
context: docker/bootstrap
tags: ${{ env.IMAGE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4
with:
file: docker/ci/Dockerfile
tags: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
fi
- name: Build and push Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4
with:
context: .
file: docker/casskop/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-and-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
echo "VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
- name: Build and push Docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4
with:
context: .
file: docker/${{ matrix.image }}/Dockerfile
Expand All @@ -128,7 +128,7 @@ jobs:

- name: Tag Docker image as latest
if: ${{ github.ref_type == 'tag' }}
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4
with:
context: .
file: docker/${{ matrix.image }}/Dockerfile
Expand Down

0 comments on commit 55f9423

Please sign in to comment.