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