Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -36,4 +36,4 @@ jobs:

- name: Build (smoke test)
working-directory: src
run: go build ./...
run: go build ./...
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading