Skip to content

Commit 4b2a313

Browse files
authored
Disable image caching in setup-qemu action (#1591)
/cherry-pick Signed-off-by: 1gtm <[email protected]>
1 parent 391dd98 commit 4b2a313

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
- name: Set up QEMU
3232
id: qemu
3333
uses: docker/setup-qemu-action@v3
34+
with:
35+
cache-image: false
3436

3537
- name: Set up Docker Buildx
3638
uses: docker/setup-buildx-action@v3

.github/workflows/e2e.yml

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

2931
- name: Set up Docker Buildx
3032
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/controller/workload.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,6 @@ func (c *StashController) ensureImagePullSecrets(invokerMeta metav1.ObjectMeta,
442442
in.Data = secret.Data
443443
return in
444444
}, metav1.PatchOptions{})
445-
446445
if err != nil {
447446
return nil, err
448447
}

test/e2e/framework/exec.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ func (f *Framework) ExecOnPod(pod *core.Pod, command ...string) (string, error)
5353
Stdout: &execOut,
5454
Stderr: &execErr,
5555
})
56-
5756
if err != nil {
5857
return "", fmt.Errorf("could not execute: %v", err)
5958
}

0 commit comments

Comments
 (0)