File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,15 @@ jobs:
2525 strategy :
2626 matrix :
2727 go-version : # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
28- - " 1.20 "
28+ - " 1.21 "
2929
3030 steps :
31- - uses : actions/checkout@v3
31+ - uses : actions/checkout@v4
3232
33- - uses : actions/setup-go@v3
33+ - uses : actions/setup-go@v4
3434 with : # Not cache: true because we also cache go-build and golangci-lint
3535 go-version : ${{ matrix.go-version }}
36+ cache : false
3637
3738 - uses : actions/cache@v3
3839 with :
@@ -50,12 +51,12 @@ jobs:
5051 strategy :
5152 matrix :
5253 go-version : # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
53- - " 1.20 "
54+ - " 1.21 "
5455 tinygo-version : # Note: TinyGo only supports latest: https://github.com/tinygo-org/tinygo/releases
55- - " 0.28.1 " # Latest
56+ - " 0.30.0 " # Latest
5657
5758 steps :
58- - uses : actions/checkout@v3
59+ - uses : actions/checkout@v4
5960
6061 - uses : actions/setup-go@v4
6162 with :
Original file line number Diff line number Diff line change @@ -27,16 +27,17 @@ jobs:
2727 strategy :
2828 matrix :
2929 go-version : # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
30- - " 1.20 "
30+ - " 1.21 "
3131 tinygo-version : # Note: TinyGo only supports latest: https://github.com/tinygo-org/tinygo/releases
32- - " 0.28.1 " # Latest
32+ - " 0.30.0 " # Latest
3333
3434 steps :
35- - uses : actions/checkout@v3
35+ - uses : actions/checkout@v4
3636
3737 - uses : actions/setup-go@v4
3838 with :
3939 go-version : ${{ matrix.go-version }}
40+ cache : false
4041
4142 - name : " Set up TinyGo"
4243 run : | # Installing via curl so commands are similar on OS/x
Original file line number Diff line number Diff line change 11gofumpt := mvdan.cc/gofumpt@v0.5.0
22gosimports := 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
44
55.PHONY : testdata
66testdata :
You can’t perform that action at this time.
0 commit comments