We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da1924 commit 75cc2ebCopy full SHA for 75cc2eb
.github/actions/install-go/action.yml
@@ -64,7 +64,10 @@ runs:
64
with:
65
go-version: ${{ env.GO_VERSION }}
66
cache-dependency-path: ${{ inputs.cache-dependency-path }}
67
- cache: true
+ # 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
71
- name: "Cleanup go version string"
72
shell: bash
73
# Remove possible trailing .x
0 commit comments