Skip to content

Commit

Permalink
chore: update Go to 1.23.1 (#2583)
Browse files Browse the repository at this point in the history
A few vulnerabilities reported on the current Go version, so this PR
updates Go to 1.23.1.
  • Loading branch information
cuixq authored Sep 10, 2024
1 parent 697bf72 commit 8e69f6b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.22.5'
go-version: '>=1.23.1'
- name: Set up terraform
uses: hashicorp/setup-terraform@v2
- name: Run pylint and yapf, go vet
Expand Down
2 changes: 1 addition & 1 deletion docker/ci/install_go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ set -eux

# Download and install Go
# https://pkg.go.dev/golang.org/x/tools/cmd/getgo#section-readme
curl -LO https://get.golang.org/$(uname)/go_installer && chmod +x go_installer && SHELL="bash" ./go_installer -version 1.22.5 && rm go_installer
curl -LO https://get.golang.org/$(uname)/go_installer && chmod +x go_installer && SHELL="bash" ./go_installer -version 1.23.1 && rm go_installer
2 changes: 1 addition & 1 deletion docker/indexer/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/osv.dev/docker/indexer

go 1.22.5
go 1.23.1

require (
cloud.google.com/go/datastore v1.19.0
Expand Down
2 changes: 1 addition & 1 deletion docs/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module osv.dev/tools

go 1.22.5
go 1.23.1

require (
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0
Expand Down
2 changes: 1 addition & 1 deletion tools/datastore-remover/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/datastore-remover

go 1.22.5
go 1.23.1

require (
cloud.google.com/go/datastore v1.19.0
Expand Down
2 changes: 1 addition & 1 deletion tools/indexer-api-caller/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/google/indexer-api-caller

go 1.22.5
go 1.23.1
2 changes: 1 addition & 1 deletion vulnfeeds/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/osv/vulnfeeds

go 1.22.5
go 1.23.1

require (
cloud.google.com/go/logging v1.11.0
Expand Down

0 comments on commit 8e69f6b

Please sign in to comment.