Skip to content

Commit 9def0d9

Browse files
committed
fix: web terminal
1 parent ddc112f commit 9def0d9

File tree

6 files changed

+807
-305
lines changed

6 files changed

+807
-305
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id: date
4747
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
4848

49-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v4
5050
with:
5151
fetch-depth: '0'
5252

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
5454

5555
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v4
5757
with:
5858
fetch-depth: '0'
5959

@@ -63,13 +63,13 @@ jobs:
6363

6464
# Runs a single command using the runners shell
6565
- name: Use Node.js
66-
uses: actions/setup-node@v1
66+
uses: actions/setup-node@v4
6767
with:
68-
node-version: 14.x
68+
node-version: 20.x
6969
registry-url: https://registry.npmjs.org
7070

7171
- name: Cache node_modules
72-
uses: actions/cache@v2
72+
uses: actions/cache@v4
7373
id: yarn-cache
7474
with:
7575
path: ~/.npm

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.3.0-alpine as build
1+
FROM node:20-alpine as build
22

33
RUN apk add --update --virtual --no-cache python3 make g++
44

@@ -14,7 +14,7 @@ COPY . .
1414

1515
RUN yarn build
1616

17-
FROM node:16.3.0-alpine
17+
FROM node:20-alpine
1818

1919
RUN apk add --update --virtual --no-cache python3 make g++
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333
},
3434
"dependencies": {
35-
"@cliz/web-terminal": "^0.7.10",
35+
"@cliz/web-terminal": "^1.2.1",
3636
"@commitlint/cli": "^12.1.4",
3737
"@commitlint/config-conventional": "^12.1.4",
3838
"@koex/body": "^0.0.8",

0 commit comments

Comments
 (0)