Skip to content

Commit 5881fad

Browse files
authored
chore: upgrades CI to support 1.23 (#89)
* chore: upgrades CI to support 1.23 * fix: golangci lint version.
1 parent 5ad5dad commit 5881fad

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/commit.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
strategy:
2626
matrix:
2727
go-version: # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
28-
- "1.20"
29-
- "1.21"
28+
- "1.22"
29+
- "1.23"
3030

3131
steps:
3232
- uses: actions/checkout@v4
@@ -60,8 +60,8 @@ jobs:
6060
strategy:
6161
matrix:
6262
go-version: # Note: Go only supports 2 versions: https://go.dev/doc/devel/release#policy
63-
- "1.20"
64-
- "1.21"
63+
- "1.22"
64+
- "1.23"
6565

6666
steps:
6767
- name: "Checkout"
@@ -89,19 +89,19 @@ jobs:
8989
- name: "Set up Go"
9090
uses: actions/setup-go@v4
9191
with:
92-
go-version: "1.21"
92+
go-version: "1.23"
9393
cache: true
9494

9595
- name: "Set up TinyGo"
9696
uses: acifani/setup-tinygo@v1
9797
with:
98-
tinygo-version: 0.30.0
98+
tinygo-version: 0.33.0
9999

100100
- name: "Cache TinyGo build"
101101
uses: actions/cache@v3
102102
with:
103103
path: ~/.cache/tinygo
104-
key: tinygo-0.30.0
104+
key: tinygo-0.33.0
105105

106106
- name: "Build TCK"
107107
run: make tck

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gofumpt := mvdan.cc/[email protected]
22
gosimports := github.com/rinchsan/gosimports/cmd/[email protected]
3-
golangci_lint := github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.0
3+
golangci_lint := github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0
44

55
.PHONY: testdata
66
testdata:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/http-wasm/http-wasm-host-go
22

3-
go 1.19
3+
go 1.21
44

5-
require github.com/tetratelabs/wazero v1.5.0
5+
require github.com/tetratelabs/wazero v1.8.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/tetratelabs/wazero v1.5.0 h1:Yz3fZHivfDiZFUXnWMPUoiW7s8tC1sjdBtlJn08qYa0=
2-
github.com/tetratelabs/wazero v1.5.0/go.mod h1:0U0G41+ochRKoPKCJlh0jMg1CHkyfK8kDqiirMmKY8A=
1+
github.com/tetratelabs/wazero v1.8.0 h1:iEKu0d4c2Pd+QSRieYbnQC9yiFlMS9D+Jr0LsRmcF4g=
2+
github.com/tetratelabs/wazero v1.8.0/go.mod h1:yAI0XTsMBhREkM/YDAK/zNou3GoiAce1P6+rp/wQhjs=

tck/tck.wasm

1.47 KB
Binary file not shown.

0 commit comments

Comments
 (0)