From 3d084bc1f6ec96a8a2b539c9ec4d839f37141726 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Fri, 10 Oct 2025 11:57:51 +0200 Subject: [PATCH] chore: update action --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 88088ed..379d616 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,6 @@ on: permissions: contents: read - pull-requests: write concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} @@ -28,9 +27,13 @@ jobs: check-latest: true go-version-file: go.mod - - uses: golangci/golangci-lint-action@v8 + - name: Setup golangci-lint cache + uses: actions/cache@v4 with: - install-mode: none + path: ~/.cache/golangci-lint + key: ${{ runner.os }}-golangci-lint-${{ hashFiles('**/go.mod') }} + restore-keys: | + ${{ runner.os }}-golangci-lint- - name: Run lint run: make lint