Skip to content

Commit

Permalink
build(deps): Bump docker/build-push-action from 4 to 5 (#821)
Browse files Browse the repository at this point in the history
Reviewed-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
Approved-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
  • Loading branch information
craciunoiuc committed Sep 18, 2023
2 parents 9ecac6b + a09ebbf commit 2dbb3b0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
password: ${{ secrets.REG_TOKEN }}

- name: Build OCI image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
file: ./buildenvs/qemu.Dockerfile
Expand All @@ -54,7 +54,7 @@ jobs:
path: /tmp/qemu-${{ matrix.QEMU_VERSION }}.tar

- name: Push OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.event_name == 'push' }}
with:
push: true
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
password: ${{ secrets.REG_TOKEN }}

- name: Build OCI image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
load: true
Expand All @@ -102,7 +102,7 @@ jobs:
path: /tmp/myself.tar

- name: Push OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.event_name == 'push' }}
with:
push: true
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
for I in /tmp/*.tar; do docker load --input "${I}"; done
- name: Build OCI image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
load: true
Expand All @@ -162,7 +162,7 @@ jobs:
path: /tmp/base.tar

- name: Push OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.event_name == 'push' }}
with:
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerfile-llb-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
password: ${{ secrets.REG_TOKEN }}

- name: Build OCI image for the LLB plugin
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ./tools/dockerfile-llb-frontend
file: ./tools/dockerfile-llb-frontend/Dockerfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/github-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build OCI image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
file: ./buildenvs/qemu.Dockerfile
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
password: ${{ secrets.REG_TOKEN }}

- name: Build OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
load: true
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
execute: true

- name: Push OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.event_name == 'push' }}
with:
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/myself-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
password: ${{ secrets.REG_TOKEN }}

- name: Build OCI image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
file: ./buildenvs/myself.Dockerfile
Expand All @@ -49,7 +49,7 @@ jobs:
path: /tmp/myself-full.tar

- name: Push OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.event_name == 'push' }}
with:
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/myself.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
password: ${{ secrets.REG_TOKEN }}

- name: Build OCI image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: false
file: ./buildenvs/myself.Dockerfile
Expand All @@ -45,7 +45,7 @@ jobs:
path: /tmp/myself.tar

- name: Push OCI Image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ github.event_name == 'push' }}
with:
push: true
Expand Down

0 comments on commit 2dbb3b0

Please sign in to comment.