Skip to content

Commit 9557150

Browse files
committed
chore: upgrade go version to 1.25
1 parent e427344 commit 9557150

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/backend-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.24
21+
go-version: 1.25
2222
check-latest: true
2323
cache: true
2424
- name: Verify go.mod is tidy
2525
run: |
26-
go mod tidy -go=1.24
26+
go mod tidy -go=1.25
2727
git diff --exit-code
2828
- name: golangci-lint
2929
uses: golangci/golangci-lint-action@v8
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-go@v5
4040
with:
41-
go-version: 1.24
41+
go-version: 1.25
4242
check-latest: true
4343
cache: true
4444
- name: Run all tests

.github/workflows/build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 0
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.24
21+
go-version: 1.25
2222
check-latest: true
2323
cache: true
2424
- uses: pnpm/[email protected]

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/usememos/memos
22

3-
go 1.24.0
3+
go 1.25
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.38.3

scripts/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24-alpine AS backend
1+
FROM golang:1.25-alpine AS backend
22
WORKDIR /backend-build
33
COPY go.mod go.sum ./
44
RUN go mod download

0 commit comments

Comments
 (0)