Skip to content

Commit 28c269f

Browse files
committed
all: upgrade go directive to at least 1.23.0 [generated]
By now Go 1.24.0 has been released, and Go 1.22 is no longer supported per the Go Release Policy (https://go.dev/doc/devel/release#policy). For golang/go#69095. [git-generate] (cd . && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none) Change-Id: Ibbe8c9b47dc25807218423afdaa8acef483a0bf8 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/649337 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Gopher Robot <[email protected]> Reviewed-by: Cherry Mui <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent ceb5461 commit 28c269f

13 files changed

+1
-13
lines changed

all_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17 && !windows
6-
// +build go1.17,!windows
76

87
package main
98

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/vulndb
22

3-
go 1.23
3+
go 1.23.0
44

55
require (
66
cloud.google.com/go/errorreporting v0.3.0

internal/issues/real_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package issues
98

internal/triage/by_references_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package triage
98

internal/triage/paths_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package triage
98

internal/worker/false_positives_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package worker
98

internal/worker/gen_false_positives.go

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
// Then run this program with the path to the repo as argument.
1414

1515
//go:build ignore
16-
// +build ignore
1716

1817
package main
1918

internal/worker/server_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
// The android builder doesn't copy the static directory (or anything but testdata).
66
//go:build !android && go1.17
7-
// +build !android,go1.17
87

98
package worker
109

internal/worker/store/fire_store_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package store
98

internal/worker/store/mem_store_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package store
98

internal/worker/update_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package worker
98

internal/worker/worker_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.17
6-
// +build go1.17
76

87
package worker
98

tools_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build tools
6-
// +build tools
76

87
package main
98

0 commit comments

Comments
 (0)