Skip to content

Commit

Permalink
cicd: Update build-push-action and buildx and ignore cache error
Browse files Browse the repository at this point in the history
  • Loading branch information
sidey79 committed Dec 4, 2023
1 parent e4b6254 commit bbe7fa1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-matrix-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,13 @@ jobs:
swap_location: '/mnt/swapfile'

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
image=moby/buildkit:v0.10.6
image=moby/buildkit:v0.12.4
- name: Extract Docker metadata
id: meta-it
Expand All @@ -160,15 +160,15 @@ jobs:

- name: Build for integration test
id: build-it
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
context: .
file: Dockerfile
platforms: linux/amd64
push: false
load: true
target: runtime
cache-to: type=gha,scope=runtime-stage_cross-${{ matrix.module }}_${{ hashFiles('./requirements_mod.txt') }}
cache-to: type=gha,scope=runtime-stage_cross-${{ matrix.module }}_${{ hashFiles('./requirements_mod.txt') }},ignore-error=true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
Expand Down

0 comments on commit bbe7fa1

Please sign in to comment.