You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade actions/setup-go to v4 in CI workflow (#747)
Adds protections to disable caching for corner case when compiling
across multiple Linux distribution versions would result in collisions.
Signed-off-by: Austin Vazquez <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/build.yaml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,11 @@ jobs:
37
37
# So, we will fetch 30 commits just in case to have
38
38
# 20 actual commits with associated merged commits.
39
39
fetch-depth: 30
40
-
- uses: actions/setup-go@v3
40
+
- uses: actions/setup-go@v4
41
41
with:
42
42
go-version: ${{ matrix.go }}
43
+
# Disable Go caching feature when compiling across Linux distributions due to collisions until https://github.com/actions/setup-go/issues/368 is resolved.
0 commit comments