From 33ff9fb58363f622d00c92f1079c29be16ebe278 Mon Sep 17 00:00:00 2001 From: Ben van Hartingsveldt Date: Fri, 29 Aug 2025 16:01:54 +0200 Subject: [PATCH] Update linter workflow --- .github/workflows/golangci-lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 83e4cbee..bdf62abd 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -22,18 +22,18 @@ jobs: runs-on: ubuntu-latest steps: - name: setup go ${{ env.GO_VERSION }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: '${{ env.GO_VERSION }}' - name: checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: compile code run: go install -v ./... - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v8 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version version: latest