Skip to content

Commit 959c390

Browse files
authored
[cherry-pick] Disable image caching in setup-qemu action (#1398) (#1399)
/cherry-pick Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 43ca4e5 commit 959c390

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ jobs:
2323

2424
- name: Set up QEMU
2525
id: qemu
26-
uses: docker/setup-qemu-action@v1
27-
28-
- name: Available platforms
29-
run: echo ${{steps.qemu.outputs.platforms}}
26+
uses: docker/setup-qemu-action@v3
27+
with:
28+
cache-image: false
3029

3130
- name: Set up Docker Buildx
3231
uses: docker/setup-buildx-action@v1

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ jobs:
2525
2626
- name: Set up QEMU
2727
id: qemu
28-
uses: docker/setup-qemu-action@v1
29-
30-
- name: Available platforms
31-
run: echo ${{steps.qemu.outputs.platforms}}
28+
uses: docker/setup-qemu-action@v3
29+
with:
30+
cache-image: false
3231

3332
- name: Set up Docker Buildx
3433
uses: docker/setup-buildx-action@v1

0 commit comments

Comments
 (0)