Skip to content

Commit 97b4433

Browse files
committed
Update versions used in examples
1 parent 51e00fb commit 97b4433

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- uses: actions/checkout@v2
2020
with:
2121
fetch-depth: 1
22-
- uses: dominikh/staticcheck-action@v1.2.0
22+
- uses: dominikh/staticcheck-action@v1.3.0
2323
with:
24-
version: "2022.1"
24+
version: "2022.1.3"
2525
```
2626
2727
A more advanced example that runs tests, go vet and Staticcheck on multiple OSs and Go versions looks like this:
@@ -37,21 +37,21 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
40-
go: ["1.16.x", "1.17.x"]
40+
go: ["1.18.x", "1.19.x"]
4141
dir: ["server", "client"]
4242
runs-on: ${{ matrix.os }}
4343
steps:
4444
- uses: actions/checkout@v2
4545
with:
4646
fetch-depth: 1
47-
- uses: WillAbides/setup-go-faster@v1.7.0
47+
- uses: WillAbides/setup-go-faster@v1.8.0
4848
with:
4949
go-version: ${{ matrix.go }}
5050
- run: "go test ./..."
5151
- run: "go vet ./..."
52-
- uses: dominikh/staticcheck-action@v1.2.0
52+
- uses: dominikh/staticcheck-action@v1.3.0
5353
with:
54-
version: "2022.1"
54+
version: "2022.1.3"
5555
install-go: false
5656
cache-key: ${{ matrix.go }}
5757
working-directory: ${{ matrix.dir }}

0 commit comments

Comments
 (0)