Skip to content

Commit 98cf98c

Browse files
authored
Merge pull request #612 from thedadams/fix-go-1-22-4
chore: fix Go version to 1.22.4
2 parents 823142b + e4d174b commit 98cf98c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/main.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
uses: actions/setup-go@v5
2727
with:
2828
cache: false
29-
go-version: "1.22"
29+
# This can't be upgraded until the issue with sys.daemon on Windows is resolved
30+
# After the issue is resolved, this can be set to 1.22
31+
go-version: "1.22.4"
3032
- name: Run GoReleaser
3133
uses: goreleaser/goreleaser-action@v4
3234
with:

.github/workflows/release.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
uses: actions/setup-go@v5
2828
with:
2929
cache: false
30-
go-version: "1.22"
30+
# This can't be upgraded until the issue with sys.daemon on Windows is resolved
31+
# After the issue is resolved, this can be set to 1.22
32+
go-version: "1.22.4"
3133
- name: Run GoReleaser
3234
uses: goreleaser/goreleaser-action@v4
3335
with:

go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/gptscript-ai/gptscript
22

3-
go 1.22.3
3+
// This can't be upgraded until the issue with sys.daemon on Windows is resolved
4+
go 1.22.4
45

56
require (
67
github.com/AlecAivazis/survey/v2 v2.3.7

0 commit comments

Comments
 (0)