From 6601a79e2e4b4b5e3be33e7b7b8b43072ae45cec Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Sun, 12 Jan 2025 10:28:17 -0500 Subject: [PATCH] ci: use go 1.22 and upgrade golangci-lint Signed-off-by: Chris Gianelloni --- .github/workflows/golangci-lint.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 136a9762..97645e1a 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -22,12 +22,11 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.21.x + go-version: 1.22.x cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: - version: v1.54 # current version at time of commit args: --timeout=10m # Only show new issues in a PR but show all issues for pushes only-new-issues: ${{ github.event_name == 'pull_request' && 'true' || 'false' }}