Commit 4f7db53 1 parent 27d8161 commit 4f7db53 Copy full SHA for 4f7db53
File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 47
47
- name : Set up Go
48
48
uses : actions/setup-go@v5
49
49
with :
50
- go-version : " 1.22 "
50
+ go-version : " 1.23 "
51
51
- name : Build for Darwin
52
52
if : ${{ startsWith(matrix.os, 'macos') }}
53
53
uses : goreleaser/goreleaser-action@v6
Original file line number Diff line number Diff line change 13
13
- name : Set up Go
14
14
uses : actions/setup-go@v5
15
15
with :
16
- go-version : " 1.22 "
16
+ go-version : " 1.23 "
17
17
- name : Test
18
18
run : |
19
19
go install go.uber.org/mock/mockgen@latest
Original file line number Diff line number Diff line change 1
1
# build frontend
2
- FROM node:21 as fe
2
+ FROM node:22 as fe
3
3
WORKDIR /src
4
4
COPY .git frontend ./
5
5
RUN npm i && npm run build
6
6
7
7
# build backend
8
- FROM golang:1.22 as be
8
+ FROM golang:1.23 as be
9
9
WORKDIR /src
10
10
COPY . ./
11
11
COPY --from=fe /src/build ./frontend/build/
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Download from [Releases](https://github.com/0x2E/fusion/releases).
53
53
54
54
### 3. Build from source
55
55
56
- 1 . Prepare dependencies: Go 1.22 +, Node.js 21 +.
56
+ 1 . Prepare dependencies: Go 1.23 +, Node.js 22 +.
57
57
2 . Check ` scripts.sh ` for more details.
58
58
59
59
For example:
You can’t perform that action at this time.
0 commit comments