Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update docker/build-push-action action to v6.6.0 #211

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/integrationtest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
images: base

- name: Build base image
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
id: docker_build_base
with:
context: .
Expand All @@ -46,7 +46,7 @@ runs:
images: runtime

- name: Build for integration test amd64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
id: docker_build_runtime
with:
context: .
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/docker-matrix-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Build base wheels and export to cache
id: build_basewheels_cross
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand All @@ -78,7 +78,7 @@ jobs:
outputs: type=local,dest=./wheelhouse

- name: cache wheel builder image amd64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand All @@ -89,7 +89,7 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache

- name: cache wheel builder image armv7
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand All @@ -113,7 +113,7 @@ jobs:

- name: Build amd64 base image and export to cache
id: build_base_amd64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand All @@ -128,7 +128,7 @@ jobs:

- name: Build armv7 base image and export to cache
id: build_base_armv7
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand All @@ -148,7 +148,7 @@ jobs:


- name: Build extra wheels
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
mkdir -p ./wheelhouse/linux_arm_v7

- name: Build wheels for mod ${{ matrix.module }}
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
timeout-minutes: 75
with:
context: .
Expand All @@ -306,7 +306,7 @@ jobs:

- name: Build for integration test
id: build-it
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
with:
context: .
file: Dockerfile
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
org.opencontainers.image.title=${{ env.IMAGE_NAME }}_${{ matrix.module }}

- name: Build and push Docker image for all plattforms
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.6.0
id: docker_build_runtime_cross
with:
context: .
Expand Down
Loading