From 23691aeeb3eaa942a5e9787c385459da998ad566 Mon Sep 17 00:00:00 2001 From: Maximilian Geberl Date: Wed, 18 Feb 2026 13:08:41 +0100 Subject: [PATCH] Specify go version directly so renovate will bump them --- .github/workflows/tests.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6934523..c8938c2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -14,7 +14,6 @@ jobs: test: strategy: matrix: - go-version: [1.25.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} @@ -22,7 +21,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: ${{ matrix.go-version }} + go-version: 1.25.x - name: Checkout code uses: actions/checkout@v6 @@ -58,16 +57,13 @@ jobs: if: matrix.os == 'windows-latest' run: ./out/bin/rename-pvc.exe --help test-kind: - strategy: - matrix: - go-version: [1.25.x] runs-on: ubuntu-latest steps: - name: Install Go uses: actions/setup-go@v6 with: - go-version: ${{ matrix.go-version }} + go-version: 1.25.x - name: Create k8s Kind Cluster uses: helm/kind-action@v1.14.0