From 9a9ce05acffd22d57057051cbbef869c62d239bb Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Sat, 23 Nov 2024 12:59:34 +0100 Subject: [PATCH] bump golang to 1.23 --- .github/workflows/create-release.yml | 4 ++-- .github/workflows/master-build.yml | 4 ++-- .github/workflows/pr-build.yml | 4 ++-- cmd/longtail/go.mod | 2 +- commands/go.mod | 3 ++- go.mod | 2 +- go.work | 2 +- longtaillib/go.mod | 2 +- longtailstorelib/go.mod | 2 +- longtailutils/go.mod | 2 +- remotestore/go.mod | 2 +- 11 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index b848c0ae..468c1ef1 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -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 diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index 07dcedaa..c393c355 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -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 diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index cc0b3464..00a7530e 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -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 diff --git a/cmd/longtail/go.mod b/cmd/longtail/go.mod index 9f2c915c..7176e9c4 100644 --- a/cmd/longtail/go.mod +++ b/cmd/longtail/go.mod @@ -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 diff --git a/commands/go.mod b/commands/go.mod index d37a4094..451e440b 100644 --- a/commands/go.mod +++ b/commands/go.mod @@ -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 @@ -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 diff --git a/go.mod b/go.mod index 64e251b3..166dc4e7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/DanEngelbrecht/golongtail -go 1.22.0 +go 1.23 diff --git a/go.work b/go.work index c7be17e5..1a100432 100644 --- a/go.work +++ b/go.work @@ -1,4 +1,4 @@ -go 1.22.0 +go 1.23 use ( ./cmd/longtail diff --git a/longtaillib/go.mod b/longtaillib/go.mod index 5bfc6ae1..f10c481d 100644 --- a/longtaillib/go.mod +++ b/longtaillib/go.mod @@ -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 diff --git a/longtailstorelib/go.mod b/longtailstorelib/go.mod index d3616556..c6ec5454 100644 --- a/longtailstorelib/go.mod +++ b/longtailstorelib/go.mod @@ -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 diff --git a/longtailutils/go.mod b/longtailutils/go.mod index 630cd741..667d6f09 100644 --- a/longtailutils/go.mod +++ b/longtailutils/go.mod @@ -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 diff --git a/remotestore/go.mod b/remotestore/go.mod index 103b8100..b27f2792 100644 --- a/remotestore/go.mod +++ b/remotestore/go.mod @@ -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