Skip to content

Commit 86ba011

Browse files
authored
Bumped go tooling to latest (#265)
This makes all go.mod files consistent in this repo, and matches the tooling actually used in the Dockerfile. It should also unblock #264 which was otherwise making an odd proposal with respect to the go version and toolchain version.
1 parent d8c2493 commit 86ba011

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/go_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
go-version: [1.22.x, 1.23.x]
9+
go-version: [1.24.x]
1010
os: [ubuntu-latest, macos-latest]
1111
runs-on: ${{ matrix.os }}
1212
steps:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # v6.5.1
2020
with:
2121
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
22-
version: v1.60.3
22+
version: v1.64.2

experimental/gcp-log/gcs_uploader/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/gcp_serverless_example_module
22

3-
go 1.22.7
3+
go 1.24.0
4+
5+
toolchain go1.24.1
46

57
require cloud.google.com/go/storage v1.33.0
68

experimental/gcp-log/go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
module github.com/gcp_serverless_module
22

3-
go 1.22.7
4-
toolchain go1.23.7
3+
go 1.24.0
4+
5+
toolchain go1.24.1
56

67
require (
78
cloud.google.com/go/kms v1.15.5

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/transparency-dev/serverless-log
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.7
5+
toolchain go1.24.1
66

77
require (
88
github.com/gdamore/tcell/v2 v2.8.1

0 commit comments

Comments
 (0)