aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
authorJacob Oaks <jacoboaks.8@gmail.com>2024-04-29 14:56:56 -0400
committerGitHub <noreply@github.com>2024-04-29 14:56:56 -0400
commita00b837ec45a226977f66cbe7b40a0ea692f41e4 (patch)
tree3118bd64a7eb1810721f538c79bc63a47df30e0f /.github/workflows/go.yml
parent5683eee3e5bd1cf1d2a09ed80c8af7b48d0d5d2a (diff)
parent5d9ac57635dbc05059aaa9e94b8c76a5da3ca5bb (diff)
downloadsally-a00b837ec45a226977f66cbe7b40a0ea692f41e4.tar.gz
Merge branch 'master' into dependabot/go_modules/github.com/stretchr/testify-1.9.0
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