From fc8593aad5c1441bf1570c96b8f8949f81d364b5 Mon Sep 17 00:00:00 2001 From: Kelsey Mills Date: Wed, 6 Nov 2024 09:51:03 +0000 Subject: [PATCH] Try fix linting --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 26269669..1885b147 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,17 +32,17 @@ jobs: runs-on: ubuntu-22.04 name: lint steps: + - uses: actions/setup-go@v5 + with: + go-version: '1.20' + cache: false - uses: actions/checkout@v4 with: # NOTE: Because we are a fork, # we must fetch all history for all branches # and tags. - fetch-depth: '0' + fetch-depth: 0 - name: golangci-lint uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0 with: version: v1.52.2 - - uses: actions/setup-go@v5 - with: - go-version: '1.20' - cache: false