Skip to content

Commit e57ec90

Browse files
authoredOct 31, 2023
update CI deps (#30)
* update deps * update golangci lint
1 parent 487a6e2 commit e57ec90

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed
 

‎.github/workflows/commit.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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:

‎.github/workflows/testdata.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gofumpt := mvdan.cc/gofumpt@v0.5.0
22
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
44

55
.PHONY: testdata
66
testdata:

0 commit comments

Comments
 (0)