Skip to content

Commit bbca130

Browse files
committed
chore: bump golang version
1 parent a0fabaf commit bbca130

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/backend-tests.yml

+3-3
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.23
21+
go-version: 1.24
2222
check-latest: true
2323
cache: true
2424
- name: Verify go.mod is tidy
2525
run: |
26-
go mod tidy -go=1.23
26+
go mod tidy -go=1.24
2727
git diff --exit-code
2828
- name: golangci-lint
2929
uses: golangci/golangci-lint-action@v6
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-go@v5
4040
with:
41-
go-version: 1.23
41+
go-version: 1.24
4242
check-latest: true
4343
cache: true
4444
- name: Run all tests

.github/workflows/build-artifacts.yml

+1-1
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.23
21+
go-version: 1.24
2222
check-latest: true
2323
cache: true
2424
- uses: pnpm/[email protected]

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN pnpm i --frozen-lockfile
1111
RUN pnpm build
1212

1313
# Build backend exec file.
14-
FROM golang:1.23-alpine AS backend
14+
FROM golang:1.24-alpine AS backend
1515
WORKDIR /backend-build
1616

1717
COPY . .

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/usememos/memos
22

3-
go 1.23
3+
go 1.24
44

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

0 commit comments

Comments
 (0)