We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da5bddd commit 037673dCopy full SHA for 037673d
.github/workflows/build.yml
@@ -13,10 +13,10 @@ jobs:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- go-version: [1.18.x, 1.21.x]
+ go-version: [1.18.x, 1.22.x]
17
steps:
18
- name: Setup Go
19
- uses: actions/setup-go@v4
+ uses: actions/setup-go@v5
20
with:
21
go-version: ${{ matrix.go-version }}
22
@@ -28,4 +28,6 @@ jobs:
28
29
- name: Upload coverage to Codecov
30
if: ${{ matrix.go-version == '1.18.x' }}
31
- run: bash <(curl -s https://codecov.io/bash)
+ uses: codecov/codecov-action@v4
32
+ with:
33
+ token: ${{ secrets.CODECOV_TOKEN }}
.github/workflows/golangci-lint.yml
@@ -15,4 +15,4 @@ jobs:
uses: actions/checkout@v4
- name: golangci-lint
- uses: golangci/golangci-lint-action@v3
+ uses: golangci/golangci-lint-action@v4
0 commit comments