From 426d184f6b6cea275c850afaee50aa9a0dccc8cf Mon Sep 17 00:00:00 2001 From: Andrea Cosentino Date: Mon, 13 Jul 2026 12:31:57 +0200 Subject: [PATCH] ci: use Go 1.25.x in validate and regen workflows golang.org/x/net 0.55.0 bumps require go >= 1.25.0 in the Go modules (script/generator already on main via #2909, crds and script/validator pending in #2904/#2901), while setup-go installed 1.24.x with GOTOOLCHAIN=local, breaking the Run Generator/Run Validator steps. Signed-off-by: Andrea Cosentino --- .github/workflows/main-push-regen.yaml | 2 +- .github/workflows/validate.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main-push-regen.yaml b/.github/workflows/main-push-regen.yaml index 0a99d06a2..f0449fb52 100644 --- a/.github/workflows/main-push-regen.yaml +++ b/.github/workflows/main-push-regen.yaml @@ -50,7 +50,7 @@ jobs: - name: Install Go uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 with: - go-version: 1.24.x + go-version: 1.25.x - name: Build catalog 1st Run run: ./mvnw clean install -DskipTests - name: Build catalog 2nd Run diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 418ffe719..803fe8b68 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -53,7 +53,7 @@ jobs: - name: Install Go uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 with: - go-version: 1.24.x + go-version: 1.25.x - name: Run Validator run: | echo "Running Kamelet validator..."