From 758b856b9f9cfeb165955383067a1fdc24d69799 Mon Sep 17 00:00:00 2001 From: Nimish Date: Tue, 28 Jul 2026 13:57:21 +0530 Subject: [PATCH] fix(ci): use Go 1.25 --- .github/workflows/main.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- Dockerfile | 2 +- README.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8327b871..c94c0b03 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/setup-go@v7 with: - go-version: "1.24" + go-version: "1.25.x" cache-dependency-path: src/go.sum - name: Run GoReleaser (snapshot) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 859bbe60..990b5dfa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/setup-go@v7 with: - go-version: "1.24" + go-version: "1.25.x" cache-dependency-path: src/go.sum - name: Extract version diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 88525dfb..2ed58fea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v7 with: - go-version: "1.24" + go-version: "1.25.x" cache-dependency-path: src/go.sum - name: Download dependencies @@ -36,4 +36,4 @@ jobs: - name: Build (smoke test) working-directory: src - run: go build ./... \ No newline at end of file + run: go build ./... diff --git a/Dockerfile b/Dockerfile index d87ac4aa..28d35434 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM golang:1.24-alpine AS builder +FROM golang:1.25-alpine AS builder ARG VERSION ARG TARGETOS=linux diff --git a/README.md b/README.md index dfc44e2b..0d81e251 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ This installs the Phase skill to your chosen AI tool (Claude Code, Cursor, VS Co ### Prerequisites -- [Go](https://go.dev/dl/) 1.24 or later +- [Go](https://go.dev/dl/) 1.25 or later ### Project structure