From 786a5c41cfb9081ad4a9b986a3c5037e0aaaa4c2 Mon Sep 17 00:00:00 2001 From: Graham Gilbert Date: Tue, 30 Jun 2026 22:07:15 -0700 Subject: [PATCH] Fix lint CI workflow --- .github/workflows/lint.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e4b5abd..04a5fba 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,8 +4,12 @@ jobs: lint: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 - - uses: actions/checkout@v2 + uses: actions/setup-go@v6 + with: + go-version-file: go.mod - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v6.5.2 + with: + version: v1.64.8