Skip to content

Commit

Permalink
ci(actions): fix the linter workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danvergara committed Sep 21, 2022
1 parent 85b1931 commit 9609d12
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ jobs:
linters:
runs-on: ubuntu-latest
steps:
# Checks out our code locally so we can work with the files.
- name: Checkout code
uses: actions/checkout@v3
# Installs go using a single version.
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.16.x
# Checks out our code locally so we can work with the files.
- name: Checkout code
uses: actions/checkout@v2
# Runs the default linters provided by golangci-lint plus golint and godot.
- name: Run linters
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3
with:
version: v1.39
args: --enable=golint --enable=godot
version: v1.46
arg s: --enable=golint --enable=godot

0 comments on commit 9609d12

Please sign in to comment.