Skip to content

Commit 8b84c6a

Browse files
authored
Merge pull request #87 from haniffalab/update/nodejs
fix: update nodejs version
2 parents ae338dd + 369a661 commit 8b84c6a

9 files changed

Lines changed: 2625 additions & 1879 deletions

File tree

.github/workflows/deploy-appengine-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
TRANSFER_TOKEN_SALT: ${{ secrets.TRANSFER_TOKEN_SALT }}
3535

3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v6
3838

3939
- name: create yaml
4040
run: ./create_yaml.sh

.github/workflows/deploy-appengine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
TRANSFER_TOKEN_SALT: ${{ secrets.TRANSFER_TOKEN_SALT }}
3535

3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v6
3838

3939
- name: create yaml
4040
run: ./create_yaml.sh

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
token: ${{ secrets.GH_PAT }}
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v6
2020
with:
21-
node-version: 20
21+
node-version: 24
2222
cache: npm
2323

2424
- name: Install dependencies

create_yaml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FILE="app.yaml"
44
/bin/cat <<EOM >$FILE
5-
runtime: nodejs20
5+
runtime: nodejs24
66
env: $APP_ENV
77
service: $APP_SERVICE
88
env_variables:

package-lock.json

Lines changed: 2614 additions & 1868 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
"@semantic-release/exec": "^7.1.0",
4646
"@semantic-release/git": "^10.0.1",
4747
"@semantic-release/github": "^11.0.4",
48-
"better-sqlite3": "^9.3.0",
48+
"better-sqlite3": "^12.6.2",
4949
"eslint": "^8.56.0",
5050
"semantic-release": "^24.2.7"
5151
},
5252
"engines": {
53-
"node": ">=14.19.1 <=20.x.x",
53+
"node": ">=14.19.1 <=24.x.x",
5454
"npm": ">=6.0.0"
5555
},
5656
"strapi": {

src/plugins/custom-fields/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
],
3737
"engines": {
38-
"node": ">=18.0.0 <=20.x.x",
38+
"node": ">=18.0.0 <=24.x.x",
3939
"npm": ">=6.0.0"
4040
},
4141
"license": "MIT"

src/plugins/data-import/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
],
3737
"engines": {
38-
"node": ">=18.0.0 <=20.x.x",
38+
"node": ">=18.0.0 <=24.x.x",
3939
"npm": ">=6.0.0"
4040
},
4141
"license": "MIT"

src/plugins/ebi-ols/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"engines": {
21-
"node": ">=14.19.1 <=18.x.x",
21+
"node": ">=14.19.1 <=24.x.x",
2222
"npm": ">=6.0.0"
2323
},
2424
"license": "MIT"

0 commit comments

Comments
 (0)