-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
module github.com/m13253/dns-over-https/v2 | ||
|
||
go 1.20 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.2 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.4.0 | ||
github.com/gorilla/handlers v1.5.2 | ||
github.com/infobloxopen/go-trees v0.0.0-20221216143356-66ceba885ebc | ||
github.com/miekg/dns v1.1.61 | ||
golang.org/x/net v0.28.0 | ||
github.com/miekg/dns v1.1.62 | ||
golang.org/x/net v0.31.0 | ||
) | ||
|
||
require ( | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
golang.org/x/mod v0.20.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/tools v0.24.0 // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
golang.org/x/tools v0.27.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b70babf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you need to update this to "v4" in your workflow file.
uses: actions/upload-artifact@v2
Also, I would use the latest version of go (1.23.3) here and anywhere else it might be used.
uses: actions/setup-go@v2
with:
go-version: 1.21
id: go
b70babf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh that’s why the build failed!
b70babf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GreyXor you can rerun the build it should finish. Maybe update the Go version to the latest as well (1.23.3).
b70babf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, done 👍