File tree 4 files changed +16
-10
lines changed
4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ jobs:
21
21
test :
22
22
strategy :
23
23
matrix :
24
- go-version : [1.20 .x, 1.21 .x, 1.22 .x]
24
+ go-version : [1.21 .x, 1.22 .x, 1.23 .x]
25
25
os : [ubuntu-latest]
26
26
runs-on : ${{ matrix.os }}
27
27
timeout-minutes : 10
28
28
steps :
29
- - uses : actions/setup-go@v3
29
+ - uses : actions/setup-go@v5
30
30
with :
31
31
go-version : ${{ matrix.go-version }}
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
- name : test
34
34
run : make ci
Original file line number Diff line number Diff line change @@ -21,19 +21,19 @@ jobs:
21
21
linters :
22
22
strategy :
23
23
matrix :
24
- go-version : [1.22 .x]
24
+ go-version : [1.23 .x]
25
25
os : [ubuntu-latest]
26
26
runs-on : ${{ matrix.os }}
27
27
timeout-minutes : 10
28
28
steps :
29
- - uses : actions/setup-go@v3
29
+ - uses : actions/setup-go@v5
30
30
with :
31
31
go-version : ${{ matrix.go-version }}
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
- name : prepare generated code
34
34
run : make prepare
35
35
- name : lint
36
- uses : golangci/golangci-lint-action@v3
36
+ uses : golangci/golangci-lint-action@v6
37
37
with :
38
- version : v1.57.2
38
+ version : v1.60.3
39
39
args : --print-resources-usage --timeout=10m --verbose
Original file line number Diff line number Diff line change 1
1
linters :
2
2
disable :
3
3
- errcheck
4
+
5
+ linters-settings :
6
+ staticcheck :
7
+ checks :
8
+ - all
9
+ - ' -SA1019' # We use the ast package.
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ ci: prepare
55
55
if [ ` arch` == ' x86_64' ]; then \
56
56
sudo apt-get -y -q update; \
57
57
sudo apt-get -y -q install build-essential; \
58
- wget -q https://github.com/tinygo-org/tinygo/releases/download/v0.32 .0/tinygo_0.32 .0_amd64.deb; \
59
- sudo dpkg -i tinygo_0.32 .0_amd64.deb; \
58
+ wget -q https://github.com/tinygo-org/tinygo/releases/download/v0.33 .0/tinygo_0.33 .0_amd64.deb; \
59
+ sudo dpkg -i tinygo_0.33 .0_amd64.deb; \
60
60
export PATH=$$ PATH:/usr/local/tinygo/bin; \
61
61
fi
62
62
go test -v ./... ./_generated
You can’t perform that action at this time.
0 commit comments