From 8270055b8284cbb24f9c50af6de5f1c04b5da849 Mon Sep 17 00:00:00 2001 From: Igor Shishkin Date: Fri, 4 Oct 2024 06:31:36 +0300 Subject: [PATCH] Bump Go to 1.23 Signed-off-by: Igor Shishkin --- .github/workflows/release.yml | 4 ++-- .github/workflows/verify.yml | 4 ++-- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6245283..1839e04 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.22.x' + go-version: '1.23.x' - name: Install dependencies run: go mod download - name: Test with the Go CLI @@ -61,7 +61,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.22.x' + go-version: '1.23.x' - name: Install dependencies run: go mod download - name: Build & Publish release release diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index d386e28..f8879c9 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -34,7 +34,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.22.x' + go-version: '1.23.x' - name: Install dependencies run: go mod download - name: Test with the Go CLI @@ -47,7 +47,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: '1.22.x' + go-version: '1.23.x' - name: Install dependencies run: go mod download - name: Build project against .goreleaser.yaml diff --git a/go.mod b/go.mod index 1fdd389..485155a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/runityru/cephctl -go 1.22.2 +go 1.23.1 require ( github.com/alecthomas/kingpin/v2 v2.4.0