Skip to content

Commit

Permalink
Merge pull request #612 from thedadams/fix-go-1-22-4
Browse files Browse the repository at this point in the history
chore: fix Go version to 1.22.4
  • Loading branch information
thedadams authored Jul 3, 2024
2 parents 823142b + e4d174b commit 98cf98c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
uses: actions/setup-go@v5
with:
cache: false
go-version: "1.22"
# This can't be upgraded until the issue with sys.daemon on Windows is resolved
# After the issue is resolved, this can be set to 1.22
go-version: "1.22.4"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
uses: actions/setup-go@v5
with:
cache: false
go-version: "1.22"
# This can't be upgraded until the issue with sys.daemon on Windows is resolved
# After the issue is resolved, this can be set to 1.22
go-version: "1.22.4"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module github.com/gptscript-ai/gptscript

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

require (
github.com/AlecAivazis/survey/v2 v2.3.7
Expand Down

0 comments on commit 98cf98c

Please sign in to comment.