We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edc018a commit 60a3a36Copy full SHA for 60a3a36
.github/workflows/ci.yaml
@@ -29,21 +29,9 @@ jobs:
29
steps:
30
- name: Checkout
31
uses: actions/checkout@v4
32
-
33
- - name: Echo Go Cache Paths
34
- id: go-cache-paths
35
- run: |
36
- echo "GOCACHE=$(go env GOCACHE)" >> ${{ runner.os == 'Windows' && '$env:' || '$' }}GITHUB_OUTPUT
37
- echo "GOMODCACHE=$(go env GOMODCACHE)" >> ${{ runner.os == 'Windows' && '$env:' || '$' }}GITHUB_OUTPUT
38
39
- - name: Go Build Cache
40
- uses: actions/cache@v3
41
- with:
42
- path: ${{ steps.go-cache-paths.outputs.GOCACHE }}
43
- key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.**', '**.go') }}
44
45
- # Install Go!
46
- - uses: actions/setup-go@v5
+
+ - name: Setup go
+ uses: actions/setup-go@v5
47
with:
48
go-version: "~1.22"
49
0 commit comments