From 8d30ac77c0b8d222269f1b6140033676c5fd1385 Mon Sep 17 00:00:00 2001 From: Nick Fedor <71477161+nicholas-fedor@users.noreply.github.com> Date: Sat, 18 Jan 2025 01:06:04 -0700 Subject: [PATCH] Update broken linter --- .github/workflows/pull-request.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 062e212..2cffb4a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -14,18 +14,14 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: - fetch-depth: 0 - - name: Set up Go - uses: actions/setup-go@v5 + go-version: stable + - name: golangci-lint + uses: golangci/golangci-lint-action@v6 with: - go-version: 1.23.x - - uses: dominikh/staticcheck-action@v1.3.1 - with: - # version: "2024.1.1" - install-go: "false" # StaticCheck uses go v1.17 which does not support `any` + version: v1.60 test: name: Test strategy: