aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/go.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index e8e084e..8679609 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -30,7 +30,9 @@ jobs:
run: make cover
- name: Upload coverage to codecov.io
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
lint:
name: Lint
@@ -45,11 +47,11 @@ jobs:
go-version: 1.21.x
cache: false # managed by golangci-lint
- - uses: golangci/golangci-lint-action@v3
+ - uses: golangci/golangci-lint-action@v5
name: Install golangci-lint
with:
version: latest
- args: --version # make lint will run the linter
+ args: --help # make lint will run the linter
- run: make lint
name: Lint