Skip to content

Commit 3fd8dfa

Browse files
Update go 1.23.8 => 1.23.10 (#4207)
Co-authored-by: Mike Cook <[email protected]>
1 parent f4159a7 commit 3fd8dfa

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go 1.x
2121
uses: actions/setup-go@v3
2222
with:
23-
go-version: 1.23.8
23+
go-version: 1.23.10
2424
id: go
2525

2626
- 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.23.8
53+
go-version: 1.23.10
5454
id: go
5555

5656
- name: Setup Node.js environment
@@ -82,7 +82,7 @@ jobs:
8282
- name: Set up Go 1.x
8383
uses: actions/setup-go@v3
8484
with:
85-
go-version: 1.23.8
85+
go-version: 1.23.10
8686
id: go
8787

8888
- name: Setup Node.js environment
@@ -274,7 +274,7 @@ jobs:
274274
- name: Set up Go 1.x
275275
uses: actions/setup-go@v3
276276
with:
277-
go-version: 1.23.8
277+
go-version: 1.23.10
278278
id: go
279279

280280
# Make sure esbuild works with old versions of Deno. Note: It's important

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
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.23.8
21+
go-version: 1.23.10
2222
id: go
2323

2424
- name: Validation checks

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
(()=>{})();
1818
```
1919

20+
* Update Go from 1.23.8 to 1.23.10 ([#4204](https://github.com/evanw/esbuild/issues/4204), [#4207](https://github.com/evanw/esbuild/pull/4207)
21+
22+
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses. Fixed vulnerabilities CVE-2025-4673 and CVE-2025-22874.
23+
2024
## 0.25.5
2125
2226
* Fix a regression with `browser` in `package.json` ([#4187](https://github.com/evanw/esbuild/issues/4187))

Makefile

Lines changed: 1 addition & 1 deletion
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\.23\.8 ' || (echo 'Please install Go version 1.23.8' && false)
23+
@go version | grep ' go1\.23\.10 ' || (echo 'Please install Go version 1.23.10' && 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)