File tree 3 files changed +12
-10
lines changed 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,15 @@ jobs:
25
25
strategy :
26
26
matrix :
27
27
go-version : # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
28
- - " 1.20 "
28
+ - " 1.21 "
29
29
30
30
steps :
31
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v4
32
32
33
- - uses : actions/setup-go@v3
33
+ - uses : actions/setup-go@v4
34
34
with : # Not cache: true because we also cache go-build and golangci-lint
35
35
go-version : ${{ matrix.go-version }}
36
+ cache : false
36
37
37
38
- uses : actions/cache@v3
38
39
with :
@@ -50,12 +51,12 @@ jobs:
50
51
strategy :
51
52
matrix :
52
53
go-version : # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
53
- - " 1.20 "
54
+ - " 1.21 "
54
55
tinygo-version : # Note: TinyGo only supports latest: https://github.com/tinygo-org/tinygo/releases
55
- - " 0.28.1 " # Latest
56
+ - " 0.30.0 " # Latest
56
57
57
58
steps :
58
- - uses : actions/checkout@v3
59
+ - uses : actions/checkout@v4
59
60
60
61
- uses : actions/setup-go@v4
61
62
with :
Original file line number Diff line number Diff line change @@ -27,16 +27,17 @@ jobs:
27
27
strategy :
28
28
matrix :
29
29
go-version : # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
30
- - " 1.20 "
30
+ - " 1.21 "
31
31
tinygo-version : # Note: TinyGo only supports latest: https://github.com/tinygo-org/tinygo/releases
32
- - " 0.28.1 " # Latest
32
+ - " 0.30.0 " # Latest
33
33
34
34
steps :
35
- - uses : actions/checkout@v3
35
+ - uses : actions/checkout@v4
36
36
37
37
- uses : actions/setup-go@v4
38
38
with :
39
39
go-version : ${{ matrix.go-version }}
40
+ cache : false
40
41
41
42
- name : " Set up TinyGo"
42
43
run : | # Installing via curl so commands are similar on OS/x
Original file line number Diff line number Diff line change 1
1
gofumpt := mvdan.cc/gofumpt@v0.5.0
2
2
gosimports := github.com/rinchsan/gosimports/cmd/gosimports@v0.3.8
3
- golangci_lint := github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2
3
+ golangci_lint := github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.0
4
4
5
5
.PHONY : testdata
6
6
testdata :
You can’t perform that action at this time.
0 commit comments