Skip to content

Commit

Permalink
bump golang to 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
DanEngelbrecht committed Nov 23, 2024
1 parent 14261bb commit 9a9ce05
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- name: Set up Go 1.22
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23

- name: Check out source code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- name: Set up Go 1.22
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23

- name: Check out source code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
runs-on: ${{matrix.os}}

steps:
- name: Set up Go 1.22
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23

- name: Check out source code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion cmd/longtail/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/cmd/longtail

go 1.22.0
go 1.23

require (
github.com/DanEngelbrecht/golongtail/commands v0.0.0
Expand Down
3 changes: 2 additions & 1 deletion commands/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/commands

go 1.22.0
go 1.23

require (
github.com/DanEngelbrecht/golongtail/longtaillib v0.0.0
Expand Down Expand Up @@ -68,6 +68,7 @@ require (
go.opentelemetry.io/otel/metric v1.25.0 // indirect
go.opentelemetry.io/otel/trace v1.25.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/dl v0.0.0-20241106222207-4e0968199959 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8 // indirect
golang.org/x/net v0.24.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/DanEngelbrecht/golongtail

go 1.22.0
go 1.23
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.22.0
go 1.23

use (
./cmd/longtail
Expand Down
2 changes: 1 addition & 1 deletion longtaillib/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/longtaillib

go 1.22.0
go 1.23

require (
github.com/alecthomas/assert/v2 v2.8.1
Expand Down
2 changes: 1 addition & 1 deletion longtailstorelib/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/longtailstorelib

go 1.22.0
go 1.23

require (
cloud.google.com/go/storage v1.40.0
Expand Down
2 changes: 1 addition & 1 deletion longtailutils/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/longtailutils

go 1.22.0
go 1.23

require (
github.com/DanEngelbrecht/golongtail/longtaillib v0.0.0
Expand Down
2 changes: 1 addition & 1 deletion remotestore/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/DanEngelbrecht/golongtail/remotestore

go 1.22.0
go 1.23

require (
github.com/DanEngelbrecht/golongtail/longtaillib v0.0.0
Expand Down

0 comments on commit 9a9ce05

Please sign in to comment.