Skip to content

Commit

Permalink
fix(ci): bump env version
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2E committed Aug 24, 2024
1 parent 27d8161 commit 4f7db53
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
- name: Build for Darwin
if: ${{ startsWith(matrix.os, 'macos') }}
uses: goreleaser/goreleaser-action@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"
- name: Test
run: |
go install go.uber.org/mock/mockgen@latest
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# build frontend
FROM node:21 as fe
FROM node:22 as fe
WORKDIR /src
COPY .git frontend ./
RUN npm i && npm run build

# build backend
FROM golang:1.22 as be
FROM golang:1.23 as be
WORKDIR /src
COPY . ./
COPY --from=fe /src/build ./frontend/build/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Download from [Releases](https://github.com/0x2E/fusion/releases).

### 3. Build from source

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

For example:
Expand Down

0 comments on commit 4f7db53

Please sign in to comment.