From 265c710bb1acdac540f59b5cc993e4b94ae7cc52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 06:39:18 +0000 Subject: [PATCH 1/2] build(deps): bump golangci/golangci-lint-action from 6 to 7 Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6 to 7. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v6...v7) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 493b88b1..96f3c9ad 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -31,7 +31,7 @@ jobs: - name: Run vet check run: go vet ./... - name: Run linters - uses: golangci/golangci-lint-action@v6 + uses: golangci/golangci-lint-action@v7 with: version: v1.54.2 skip-pkg-cache: true From f523f5a1e942e60e85b29ea6bfda1091c3052c22 Mon Sep 17 00:00:00 2001 From: Etai Lev Ran Date: Thu, 3 Apr 2025 13:32:32 +0300 Subject: [PATCH 2/2] Update pr-check.yml update to lint v2.0.2 (required by action v7), remove package cache directive which was deprecated in v5 Signed-off-by: Etai Lev Ran --- .github/workflows/pr-check.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 96f3c9ad..2b7aec06 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -33,8 +33,7 @@ jobs: - name: Run linters uses: golangci/golangci-lint-action@v7 with: - version: v1.54.2 - skip-pkg-cache: true + version: v2.0.2 unit-tests: runs-on: ubuntu-latest