Skip to content

Commit

Permalink
ci: update Github Action plugins
Browse files Browse the repository at this point in the history
Most notably, update golangci/golangci-lint-action to v3 as commit
3f5cb13 updated the action's
configuration for v3 but didn't bump the action version itself, which
actually prevents it from running.

Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh authored and tklauser committed Mar 28, 2022
1 parent 85bac5d commit 4332e23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run static checks
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3
with:
version: v1.45.2
args: --config=.golangci.yml --verbose
Expand Down

0 comments on commit 4332e23

Please sign in to comment.