Skip to content

Commit a254920

Browse files
committed
fix: use Go 1.25 to match hype's minimum requirement
1 parent effbe05 commit a254920

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: actions/setup-go@v5
1616
with:
17-
go-version: "1.24"
17+
go-version: "1.25"
1818

1919
- name: Install hype
2020
run: go install github.com/gopherguides/hype/cmd/hype@latest

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM golang:1.24 AS builder
1+
FROM golang:1.25 AS builder
22
RUN go install github.com/gopherguides/hype/cmd/hype@latest
33

4-
FROM golang:1.24
4+
FROM golang:1.25
55
COPY --from=builder /go/bin/hype /usr/local/bin/hype
66
WORKDIR /site
77
COPY . .

0 commit comments

Comments
 (0)