We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77cd6e1 commit 378e751Copy full SHA for 378e751
1 file changed
.github/workflows/go.yml
@@ -14,12 +14,12 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- go: ['1.24.x', '1.25.x']
+ go: ['1.25.x', '1.26.x']
18
steps:
19
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
20
21
- name: Set up Go
22
- uses: actions/setup-go@v5
+ uses: actions/setup-go@v6
23
with:
24
go-version: ${{ matrix.go }}
25
@@ -36,7 +36,7 @@ jobs:
36
run: go test -race -v ./...
37
38
- name: Coveralls
39
- if: ${{ startsWith(matrix.go, '1.25') && github.event_name == 'push' }}
+ if: ${{ startsWith(matrix.go, '1.26') && github.event_name == 'push' }}
40
env:
41
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
run: |
0 commit comments