We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10dca68 commit 2fe9e8cCopy full SHA for 2fe9e8c
.github/workflows/ci.yml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- go-version: [1.21.x, 1.22.x, 1.23.x, latest]
+ go-version: [1.21.x, 1.22.x, 1.23.x]
15
16
steps:
17
- uses: actions/checkout@v4
@@ -20,14 +20,8 @@ jobs:
20
uses: actions/setup-go@v5
21
with:
22
go-version: ${{ matrix.go }}
23
-
24
- - name: Cache Go modules
25
- uses: actions/cache@v4
26
- with:
27
- path: ~/go/pkg/mod
28
- key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
29
- restore-keys: |
30
- ${{ runner.os }}-go-${{ matrix.go }}-
+ check-latest: true
+ cache-dependency-path: "**/*.sum"
31
32
- name: Download dependencies
33
run: go mod download && echo "Download successful" || go mod tidy && echo "Tidy successful" || return 1
0 commit comments