File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11module github.com/usememos/memos
22
3- go 1.24.0
3+ go 1.25
44
55require (
66 github.com/aws/aws-sdk-go-v2 v1.38.3
Original file line number Diff line number Diff line change 1- FROM golang:1.24 -alpine AS backend
1+ FROM golang:1.25 -alpine AS backend
22WORKDIR /backend-build
33COPY go.mod go.sum ./
44RUN go mod download
You can’t perform that action at this time.
0 commit comments