From 5f89419179359999ca5d9a79b7db259f7992c487 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 15:09:19 +0000 Subject: [PATCH] chore(deps): bump golangci/golangci-lint-action from 2 to 3 (#1834) * chore(deps): bump golangci/golangci-lint-action from 2 to 3 Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 2 to 3. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v2...v3) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * chore: setup-go is needed for lint v3 Signed-off-by: Alex Collins Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Collins --- .github/workflows/golangci-lint.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index cc8af45e7f..f66901057b 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -15,5 +15,9 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: golangci/golangci-lint-action@v2 + - name: Setup Golang + uses: actions/setup-go@v3.0.0 + with: + go-version: "1.17.1" + - uses: golangci/golangci-lint-action@v3 - run: git diff --exit-code