Commit 9557150a authored by Johnny's avatar Johnny

chore: upgrade go version to 1.25

parent e427344e
......@@ -18,12 +18,12 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
check-latest: true
cache: true
- name: Verify go.mod is tidy
run: |
go mod tidy -go=1.24
go mod tidy -go=1.25
git diff --exit-code
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
......@@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
check-latest: true
cache: true
- name: Run all tests
......
......@@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
check-latest: true
cache: true
- uses: pnpm/action-setup@v4.1.0
......
module github.com/usememos/memos
go 1.24.0
go 1.25
require (
github.com/aws/aws-sdk-go-v2 v1.38.3
......
FROM golang:1.24-alpine AS backend
FROM golang:1.25-alpine AS backend
WORKDIR /backend-build
COPY go.mod go.sum ./
RUN go mod download
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment