Update Go toolchain to 1.23.4 (#1395)

Because Electron now has a macOS 11 minimum supported version, we have
no blockers to adopting the latest Go toolchain. This also lets us use
the new `range` features in Go, among other things.
This commit is contained in:
Evan Simkowitz 2024-12-05 15:13:45 -05:00 committed by GitHub
parent b22dd07929
commit 8ec3c3f330
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ on:
- "v[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
env:
GO_VERSION: "1.22"
GO_VERSION: "1.23"
NODE_VERSION: 22
jobs:
build-app:

View File

@ -23,7 +23,7 @@ on:
workflow_dispatch: null
env:
GO_VERSION: "1.22"
GO_VERSION: "1.23"
NODE_VERSION: 22
permissions:

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/wavetermdev/waveterm
go 1.22.4
go 1.23.4
require (
github.com/alexflint/go-filemutex v1.3.0