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