Skip to content

Commit f93e25d

Browse files
committed
update go 1.20 => 1.20.1
1 parent 3f51381 commit f93e25d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go 1.x
2020
uses: actions/setup-go@v3
2121
with:
22-
go-version: 1.20.0
22+
go-version: 1.20.1
2323
id: go
2424

2525
- name: Setup Node.js environment
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Go 1.x
5151
uses: actions/setup-go@v3
5252
with:
53-
go-version: 1.20.0
53+
go-version: 1.20.1
5454
id: go
5555

5656
- name: Setup Node.js environment

.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go 1.x
1919
uses: actions/setup-go@v3
2020
with:
21-
go-version: 1.20.0
21+
go-version: 1.20.1
2222
id: go
2323

2424
- name: Validation checks

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test-all:
2020
@$(MAKE) --no-print-directory -j6 test-common test-deno ts-type-tests test-wasm-node test-wasm-browser lib-typecheck test-yarnpnp
2121

2222
check-go-version:
23-
@go version | grep ' go1\.20 ' || (echo 'Please install Go version 1.20.0' && false)
23+
@go version | grep ' go1\.20\.1 ' || (echo 'Please install Go version 1.20.1' && false)
2424

2525
# Note: Don't add "-race" here by default. The Go race detector is currently
2626
# only supported on the following configurations:

0 commit comments

Comments
 (0)