summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2022-08-04 19:43:49 -0400
committerDave Henderson <dhenderson@gmail.com>2022-08-04 19:54:51 -0400
commitf13bcfdd78e0e502947addb3b3f0556bbbf9edf5 (patch)
tree0ce437b54339b0ba18e54f1717332fc7f3bc7942 /.github
parent3c2a2c2be448a280f0b5d40500e3e9a5afd93010 (diff)
Use Go 1.19 when linting
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index d8ae5c68..cc2b79b9 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -15,12 +15,11 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
- # Use 1.18 rather than 1.19 for linting due to https://github.com/golangci/golangci-lint/issues/2374
- go-version: 1.18
+ go-version: 1.19
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- args: --max-same-issues=0 --max-issues-per-linter=0
+ args: --verbose --max-same-issues=0 --max-issues-per-linter=0