diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d0dcaf..fad1c24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - go-version: ['1.25'] + go-version: ['1.26.1'] steps: - name: Checkout code @@ -60,7 +60,7 @@ jobs: strategy: matrix: - go-version: ['1.25'] + go-version: ['1.26.1'] steps: - name: Checkout code @@ -105,7 +105,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v6 with: - go-version: '1.25' + go-version: '1.26.1' - name: Cache Go modules uses: actions/cache@v5 @@ -113,9 +113,9 @@ jobs: path: | ~/.cache/go-build ~/go/pkg/mod - key: ${{ runner.os }}-go-1.25-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go-1.26.1-${{ hashFiles('**/go.sum') }} restore-keys: | - ${{ runner.os }}-go-1.25- + ${{ runner.os }}-go-1.26.1- - name: Download dependencies run: go mod download diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01b5682..8ef514a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v6 with: - go-version: '1.25' + go-version: '1.26.1' - name: Cache Go modules uses: actions/cache@v5 @@ -28,9 +28,9 @@ jobs: path: | ~/.cache/go-build ~/go/pkg/mod - key: ${{ runner.os }}-go-1.25-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go-1.26.1-${{ hashFiles('**/go.sum') }} restore-keys: | - ${{ runner.os }}-go-1.25- + ${{ runner.os }}-go-1.26.1- - name: Run tests run: make test diff --git a/go.mod b/go.mod index fdf696c..d39d632 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/andreagrandi/mb-cli -go 1.25 +go 1.26.1 require github.com/spf13/cobra v1.10.2