Skip to content

Commit 294f27a

Browse files
author
Sergey Vilgelm
authored
Update README and test action to use v1.29 (#56)
1 parent c238b72 commit 294f27a

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ on: # rebuild any PRs and main branch changes
44
push:
55
branches:
66
- master
7-
- 'releases/*'
7+
- "releases/*"
88

99
jobs:
1010
build: # make sure build/ci work properly
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- run: |
15-
npm install
16-
npm run prepare-deps
17-
npm run all
13+
- uses: actions/checkout@v2
14+
- run: |
15+
npm install
16+
npm run prepare-deps
17+
npm run all
1818
test: # make sure the action works on a clean machine without building
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
22-
- uses: ./
23-
with:
24-
version: v1.28
25-
args: --issues-exit-code=0 ./sample/...
26-
only-new-issues: true
21+
- uses: actions/checkout@v2
22+
- uses: ./
23+
with:
24+
version: v1.29
25+
args: --issues-exit-code=0 ./sample/...
26+
only-new-issues: true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The action runs [golangci-lint](https://github.com/golangci/golangci-lint) and r
99

1010
## Compatibility
1111

12-
* `v2.0.0` works with `golangci-lint` version >= `v1.28.3`
12+
* `v2.0.0+` works with `golangci-lint` version >= `v1.28.3`
1313
* `v1.2.2` is deprecated due to we forgot to change the minimum version of `golangci-lint` to `v1.28.3` ([issue](https://github.com/golangci/golangci-lint-action/issues/39))
1414
* `v1.2.1` works with `golangci-lint` version >= `v1.14.0` ([issue](https://github.com/golangci/golangci-lint-action/issues/39))
1515

@@ -36,7 +36,7 @@ jobs:
3636
uses: golangci/golangci-lint-action@v1
3737
with:
3838
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
39-
version: v1.28
39+
version: v1.29
4040

4141
# Optional: working directory, useful for monorepos
4242
# working-directory: somedir

0 commit comments

Comments
 (0)