We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent effbe05 commit a254920Copy full SHA for a254920
2 files changed
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
14
15
- uses: actions/setup-go@v5
16
with:
17
- go-version: "1.24"
+ go-version: "1.25"
18
19
- name: Install hype
20
run: go install github.com/gopherguides/hype/cmd/hype@latest
Dockerfile
@@ -1,7 +1,7 @@
1
-FROM golang:1.24 AS builder
+FROM golang:1.25 AS builder
2
RUN go install github.com/gopherguides/hype/cmd/hype@latest
3
4
-FROM golang:1.24
+FROM golang:1.25
5
COPY --from=builder /go/bin/hype /usr/local/bin/hype
6
WORKDIR /site
7
COPY . .
0 commit comments