Skip to content

Commit 4f7db53

Browse files
committed
fix(ci): bump env version
1 parent 27d8161 commit 4f7db53

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Go
4848
uses: actions/setup-go@v5
4949
with:
50-
go-version: "1.22"
50+
go-version: "1.23"
5151
- name: Build for Darwin
5252
if: ${{ startsWith(matrix.os, 'macos') }}
5353
uses: goreleaser/goreleaser-action@v6

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: "1.22"
16+
go-version: "1.23"
1717
- name: Test
1818
run: |
1919
go install go.uber.org/mock/mockgen@latest

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# build frontend
2-
FROM node:21 as fe
2+
FROM node:22 as fe
33
WORKDIR /src
44
COPY .git frontend ./
55
RUN npm i && npm run build
66

77
# build backend
8-
FROM golang:1.22 as be
8+
FROM golang:1.23 as be
99
WORKDIR /src
1010
COPY . ./
1111
COPY --from=fe /src/build ./frontend/build/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Download from [Releases](https://github.com/0x2E/fusion/releases).
5353

5454
### 3. Build from source
5555

56-
1. Prepare dependencies: Go 1.22+, Node.js 21+.
56+
1. Prepare dependencies: Go 1.23+, Node.js 22+.
5757
2. Check `scripts.sh` for more details.
5858

5959
For example:

0 commit comments

Comments
 (0)