diff options
| author | Jacob Oaks <jacoboaks.8@gmail.com> | 2024-04-29 14:56:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-29 14:56:47 -0400 |
| commit | e4ac19968dfec0b3e226395238bc7d74bae64544 (patch) | |
| tree | 942480776e341fd4dcf5b0b6e8b5b4a1c8adf974 /.github | |
| parent | 8d4e02ff7abd37664be94417c509bd13d42abd04 (diff) | |
| parent | 5d9ac57635dbc05059aaa9e94b8c76a5da3ca5bb (diff) | |
| download | sally-e4ac19968dfec0b3e226395238bc7d74bae64544.tar.gz | |
Merge branch 'master' into dependabot/github_actions/fossas/fossa-action-1.3.3
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/go.yml | 8 |
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 |