-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deal with os matrix / absence of docker. Update dependencies but avoi…
…d x/tools 0.25.0 which forces go 1.22 upgrade (#155) * Deal with os matrix / absence of docker. Update dependencies but avoid x/tools 0.25.0 which forces go 1.22 upgrade * avoid issue with wrong openssl in the macos github action * switching strategy re docker * windows error is different * seems txtar/testscript files don't work on windows * more windows error message difference * Pass token down for codecov * last 2 windows error adjustments, hopefully * giving up on tescript on windows because of the -- issue
- Loading branch information
Showing
5 changed files
with
53 additions
and
42 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
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
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
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,18 +1,18 @@ | ||
module fortio.org/multicurl | ||
|
||
go 1.18 | ||
go 1.20 | ||
|
||
require ( | ||
fortio.org/cli v1.9.0 | ||
fortio.org/log v1.16.0 | ||
fortio.org/testscript v0.3.1 | ||
fortio.org/testscript v0.3.2 | ||
fortio.org/version v1.0.4 | ||
) | ||
|
||
require ( | ||
fortio.org/struct2env v0.4.1 // indirect | ||
github.com/kortschak/goroutine v1.1.2 // indirect | ||
golang.org/x/crypto/x509roots/fallback v0.0.0-20240626151235-a6a393ffd658 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
golang.org/x/crypto/x509roots/fallback v0.0.0-20240916204253-42ee18b96377 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/tools v0.24.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