From 61056f33e5e5a13a8e59548a8f939cb93e5bedd2 Mon Sep 17 00:00:00 2001 From: Samuel Laferriere Date: Wed, 19 Jun 2024 13:56:00 -0700 Subject: [PATCH] update lint workflow to use same version actions as other workflows --- .github/workflows/golangci-lint.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 15ad759d..fbfc0efb 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -11,12 +11,15 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 + - uses: actions/checkout@v4 + + - name: install go 1.21 + uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: "1.21" + - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: version: latest - args: --timeout 3m \ No newline at end of file + args: --timeout 3m