Skip to content

Commit 8a1649d

Browse files
authored
Merge pull request #2 from thaJeztah/update_go_versions
gha: update golangci-lint to v1.54, actions/setup-go@v4, and go1.20.x
2 parents c5e4b22 + c512fc5 commit 8a1649d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
test:
99
strategy:
1010
matrix:
11-
go-version: [1.18.x, 1.19.x]
11+
go-version: [1.18.x, 1.20.x]
1212
os: [ubuntu-latest, windows-latest, macos-latest]
1313
runs-on: ${{ matrix.os }}
1414
timeout-minutes: 10
1515
steps:
16-
- uses: actions/setup-go@v3
16+
- uses: actions/setup-go@v4
1717
with:
1818
go-version: ${{ matrix.go-version }}
1919
- uses: actions/checkout@v3

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ jobs:
88
linters:
99
strategy:
1010
matrix:
11-
go-version: [1.19.x]
11+
go-version: [1.20.x]
1212
os: [ubuntu-latest]
1313
runs-on: ${{ matrix.os }}
1414
timeout-minutes: 10
1515
steps:
16-
- uses: actions/setup-go@v3
16+
- uses: actions/setup-go@v4
1717
with:
1818
go-version: ${{ matrix.go-version }}
1919
- uses: actions/checkout@v3
2020
- name: lint
2121
uses: golangci/golangci-lint-action@v3
2222
with:
23-
version: v1.49
23+
version: v1.53
2424
args: --print-resources-usage --timeout=10m --verbose

0 commit comments

Comments
 (0)