From d931ff08d3b159915fea8bac7bf8c37db544d6a1 Mon Sep 17 00:00:00 2001 From: singret <100959986+singret@users.noreply.github.com> Date: Sun, 12 Jul 2026 06:13:24 +0000 Subject: [PATCH] =?UTF-8?q?fix(ci):=20upgrade=20to=20Go=201.25.12=20?= =?UTF-8?q?=E2=80=94=20resolves=20GO-2026-5856=20(crypto/tls=20ECH=20priva?= =?UTF-8?q?cy=20leak)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- .github/workflows/security.yml | 2 +- backend/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56849e4..c5e047f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: '1.25' + go-version: '1.25.12' cache: true cache-dependency-path: backend/go.sum diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index b6bb446..f6502d7 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.25.11" + go-version: "1.25.12" - name: Install govulncheck run: go install golang.org/x/vuln/cmd/govulncheck@latest - name: Scan Go dependencies diff --git a/backend/go.mod b/backend/go.mod index fb4a525..57eb2fa 100644 --- a/backend/go.mod +++ b/backend/go.mod @@ -2,7 +2,7 @@ module github.com/FluidifyAI/Regen/backend go 1.25.0 -toolchain go1.25.11 +toolchain go1.25.12 require ( github.com/alicebob/miniredis/v2 v2.36.1