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