diff options
author | Valery Piashchynski <[email protected]> | 2022-03-02 19:09:39 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-02 19:09:39 +0100 |
commit | 587702be62b65c151d27dc79e62fcbbd11290e6f (patch) | |
tree | 1569ccfe640802d6515490db4bf88110fe526782 | |
parent | 820128e30fd1e2cf6e177866a9360740561ae91f (diff) | |
parent | 923de49dd909b56fad6e7f9477974bcab6db0e27 (diff) |
[#1029]: Bump golangci/golangci-lint-action from 2 to 3.1.0
-rw-r--r-- | .github/workflows/tests.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 06bbc33e..54a74e3c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,9 +39,14 @@ jobs: steps: - name: Check out code uses: actions/checkout@v2 + + - name: Set up Go 1.17 + uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> + with: + go-version: 1.17.7 - name: Run linter - uses: golangci/golangci-lint-action@v2 # Action page: <https://github.com/golangci/golangci-lint-action> + uses: golangci/[email protected] # Action page: <https://github.com/golangci/golangci-lint-action> with: version: v1.44 # without patch version only-new-issues: false # show only new issues if it's a pull request |