From b15a00a7565865bdddc048b21736b48512f8436d Mon Sep 17 00:00:00 2001 From: Tulio Ruiz Date: Fri, 18 Oct 2024 12:41:49 -0600 Subject: [PATCH] [FIX] Update golangci-lint --- .github/workflows/golangci-lint.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 2d5d3d9..fedd1ef 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -8,9 +8,14 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: 1.16 + - name: Checkout Repo + uses: actions/checkout@v3 - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: - version: v1.54 - skip-go-installation: true + version: v1.60 + skip-cache: true