-
Notifications
You must be signed in to change notification settings - Fork 646
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump go toolchain version to address CVE-2023-45288
Changes: - Bump toolchain version to 1.21.9 due to CVE-2023-45288 - run `go mod tidy` Reference: - PR etcd #17703 Signed-off-by: Chun-Hung Tseng <henrybear327@gmail.com>
- Loading branch information
1 parent
9f3524b
commit 0b59bc1
Showing
4 changed files
with
3 additions
and
5 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 |
---|---|---|
|
@@ -17,4 +17,3 @@ jobs: | |
- run: | | ||
make gofail-enable | ||
make test-failpoint | ||
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 |
---|---|---|
|
@@ -102,4 +102,3 @@ jobs: | |
with: | ||
go-version: ${{ steps.goversion.outputs.goversion }} | ||
- run: make coverage | ||
|
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 +1 @@ | ||
1.17.13 | ||
1.21.9 |
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,16 +1,16 @@ | ||
module go.etcd.io/bbolt | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/stretchr/testify v1.8.1 | ||
go.etcd.io/gofail v0.1.0 | ||
golang.org/x/sync v0.5.0 | ||
golang.org/x/sys v0.4.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/sync v0.5.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |