Skip to content

Commit 4e871d4

Browse files
authored
Disable image caching in setup-qemu action (#114)
/cherry-pick Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 518c7b7 commit 4e871d4

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
- name: Set up QEMU
2525
id: qemu
2626
uses: docker/setup-qemu-action@v3
27+
with:
28+
cache-image: false
2729

2830
- name: Set up Docker Buildx
2931
uses: docker/setup-buildx-action@v3

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
- name: Set up QEMU
2727
id: qemu
2828
uses: docker/setup-qemu-action@v3
29+
with:
30+
cache-image: false
2931

3032
- name: Set up Docker Buildx
3133
uses: docker/setup-buildx-action@v3

pkg/util.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,6 @@ func (opt *options) execCommandOnPod(pod *corev1.Pod, containerName string, comm
421421
Stderr: &execErr,
422422
Tty: true,
423423
})
424-
425424
if err != nil {
426425
return nil, fmt.Errorf("Could not execute: %v, reason: %s", err, execErr.String())
427426
}

0 commit comments

Comments
 (0)