Skip to content

Commit 75cc2eb

Browse files
committed
Disable github cache for go installation
Signed-off-by: apostasie <[email protected]>
1 parent 2da1924 commit 75cc2eb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/actions/install-go/action.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ runs:
6464
with:
6565
go-version: ${{ env.GO_VERSION }}
6666
cache-dependency-path: ${{ inputs.cache-dependency-path }}
67-
cache: true
67+
# See https://github.com/containerd/nerdctl/issues/3733
68+
# GitHub cache is very limited. We currently depend on it for the (more important) build dependencies caching.
69+
# Disabling this here will slow down the setup a bit.
70+
cache: false
6871
- name: "Cleanup go version string"
6972
shell: bash
7073
# Remove possible trailing .x

0 commit comments

Comments
 (0)