Skip to content

Commit 59faf9f

Browse files
authored
chore: specify Go versions with 1.N.P syntax (google#154)
[CodeQL](https://github.com/google/deps.dev/security/code-scanning/tools/CodeQL/status/configurations/automatic/e3590f4cd60ff2b42bab2e8d21b799791453973e5246c2fba04edd209105a6e0) warns about invalid Go toolchain version: ``` As of Go 1.21, toolchain versions [must use the 1.N.P syntax](https://go.dev/doc/toolchain#version). ``` This PR specifies the Go version in `go.mod` files following the syntax.
1 parent e53cd68 commit 59faf9f

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

api/v3/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module deps.dev/api/v3
22

3-
go 1.23
3+
go 1.23.4
44

55
require (
66
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1

api/v3alpha/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module deps.dev/api/v3alpha
22

3-
go 1.23
3+
go 1.23.4
44

55
require (
66
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1

examples/go/artifact_query/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/google/deps.dev/examples/go/artifact_query
22

3-
go 1.23
3+
go 1.23.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/google/deps.dev/examples/go/dependencies_dot
22

3-
go 1.23
3+
go 1.23.4

examples/go/maven_parse_resolve/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/deps.dev/examples/go/maven_parse_resolve
22

3-
go 1.23
3+
go 1.23.4
44

55
require (
66
deps.dev/api/v3 v3.0.0-20240311054650-e1e6a3d70fb7

examples/go/package_lock_licenses/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/deps.dev/examples/go/package_lock_licenses
22

3-
go 1.23
3+
go 1.23.4
44

55
require (
66
deps.dev/api/v3alpha v0.0.0-20240701033337-efe6530670b9
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/google/deps.dev/examples/go/package_lock_licenses_batch
22

3-
go 1.23
3+
go 1.23.4

examples/go/resolve/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/deps.dev/examples/go/resolve
22

3-
go 1.23
3+
go 1.23.4
44

55
replace (
66
deps.dev/util/maven => ../../../util/maven

util/maven/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module deps.dev/util/maven
22

3-
go 1.23
3+
go 1.23.4
44

55
replace deps.dev/util/semver => ../semver
66

util/resolve/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module deps.dev/util/resolve
22

3-
go 1.23
3+
go 1.23.4
44

55
replace (
66
deps.dev/util/maven => ../maven

0 commit comments

Comments
 (0)