Skip to content

Commit

Permalink
Disable image caching in setup-qemu action (#1591)
Browse files Browse the repository at this point in the history
/cherry-pick

Signed-off-by: 1gtm <1gtm@appscode.com>
  • Loading branch information
1gtm authored Feb 7, 2025
1 parent 391dd98 commit 4b2a313
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
cache-image: false

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
cache-image: false

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
cache-image: false

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
1 change: 0 additions & 1 deletion pkg/controller/workload.go
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ func (c *StashController) ensureImagePullSecrets(invokerMeta metav1.ObjectMeta,
in.Data = secret.Data
return in
}, metav1.PatchOptions{})

if err != nil {
return nil, err
}
Expand Down
1 change: 0 additions & 1 deletion test/e2e/framework/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ func (f *Framework) ExecOnPod(pod *core.Pod, command ...string) (string, error)
Stdout: &execOut,
Stderr: &execErr,
})

if err != nil {
return "", fmt.Errorf("could not execute: %v", err)
}
Expand Down

0 comments on commit 4b2a313

Please # to comment.