From 653a365bce14b414cdb31d4cea7980798eecd623 Mon Sep 17 00:00:00 2001 From: Patrick Pacher Date: Wed, 27 Mar 2024 15:29:38 +0100 Subject: [PATCH] github-actions: increase golangci-lint version since it fails with go1.21 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 33673afc..8362ac6d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Go uses: actions/setup-go@v5 @@ -30,7 +30,7 @@ jobs: - name: Run golangci-lint uses: golangci/golangci-lint-action@v4 with: - version: v1.52.2 + version: v1.57.1 only-new-issues: true args: -c ./.golangci.yml --timeout 15m