Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
9557150a
Commit
9557150a
authored
Aug 31, 2025
by
Johnny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: upgrade go version to 1.25
parent
e427344e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
backend-tests.yml
.github/workflows/backend-tests.yml
+3
-3
build-artifacts.yml
.github/workflows/build-artifacts.yml
+1
-1
go.mod
go.mod
+1
-1
Dockerfile
scripts/Dockerfile
+1
-1
No files found.
.github/workflows/backend-tests.yml
View file @
9557150a
...
@@ -18,12 +18,12 @@ jobs:
...
@@ -18,12 +18,12 @@ jobs:
-
uses
:
actions/checkout@v4
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-go@v5
-
uses
:
actions/setup-go@v5
with
:
with
:
go-version
:
1.2
4
go-version
:
1.2
5
check-latest
:
true
check-latest
:
true
cache
:
true
cache
:
true
-
name
:
Verify go.mod is tidy
-
name
:
Verify go.mod is tidy
run
:
|
run
:
|
go mod tidy -go=1.2
4
go mod tidy -go=1.2
5
git diff --exit-code
git diff --exit-code
-
name
:
golangci-lint
-
name
:
golangci-lint
uses
:
golangci/golangci-lint-action@v8
uses
:
golangci/golangci-lint-action@v8
...
@@ -38,7 +38,7 @@ jobs:
...
@@ -38,7 +38,7 @@ jobs:
-
uses
:
actions/checkout@v4
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-go@v5
-
uses
:
actions/setup-go@v5
with
:
with
:
go-version
:
1.2
4
go-version
:
1.2
5
check-latest
:
true
check-latest
:
true
cache
:
true
cache
:
true
-
name
:
Run all tests
-
name
:
Run all tests
...
...
.github/workflows/build-artifacts.yml
View file @
9557150a
...
@@ -18,7 +18,7 @@ jobs:
...
@@ -18,7 +18,7 @@ jobs:
fetch-depth
:
0
fetch-depth
:
0
-
uses
:
actions/setup-go@v5
-
uses
:
actions/setup-go@v5
with
:
with
:
go-version
:
1.2
4
go-version
:
1.2
5
check-latest
:
true
check-latest
:
true
cache
:
true
cache
:
true
-
uses
:
pnpm/action-setup@v4.1.0
-
uses
:
pnpm/action-setup@v4.1.0
...
...
go.mod
View file @
9557150a
module github.com/usememos/memos
module github.com/usememos/memos
go 1.2
4.0
go 1.2
5
require (
require (
github.com/aws/aws-sdk-go-v2 v1.38.3
github.com/aws/aws-sdk-go-v2 v1.38.3
...
...
scripts/Dockerfile
View file @
9557150a
FROM
golang:1.2
4
-alpine AS backend
FROM
golang:1.2
5
-alpine AS backend
WORKDIR
/backend-build
WORKDIR
/backend-build
COPY
go.mod go.sum ./
COPY
go.mod go.sum ./
RUN
go mod download
RUN
go mod download
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment