Skip to content

Commit 2d29809

Browse files
committed
feat: upgrade to go 1.25.0
Signed-off-by: Matt Gleich <git@mattglei.ch>
1 parent 505ce32 commit 2d29809

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: '1.24.5'
14+
go-version: '1.25.0'
1515
- run: 'go build ./cmd/terminal.go'

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: '1.24.5'
14+
go-version: '1.25.0'
1515
- uses: golangci/golangci-lint-action@v6.5.0
1616
with:
1717
version: v1.64.4
@@ -21,5 +21,5 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.24.5'
24+
go-version: '1.25.0'
2525
- run: go mod tidy -diff

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM golang:1.24.5 AS build
2+
FROM golang:1.25.0 AS build
33

44
WORKDIR /src
55
COPY . .
@@ -10,7 +10,7 @@ FROM alpine:3.20.2
1010

1111
WORKDIR /
1212

13-
RUN apk update && apk add --no-cache ca-certificates=20250619-r0 tzdata=2025b-r0 wget=1.24.5-r0
13+
RUN apk update && apk add --no-cache ca-certificates=20250619-r0 tzdata=2025b-r0 wget=1.25.0-r0
1414

1515
COPY --from=build /bin/terminal /bin/terminal
1616
COPY --from=build /src/website/build ./website/build

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.mattglei.ch/terminal
22

3-
go 1.24.5
3+
go 1.25.0
44

55
require golang.org/x/sys v0.35.0 // indirect
66

0 commit comments

Comments
 (0)