Skip to content

Commit c783e6f

Browse files
authored
Merge pull request #172 from increments/update-from-node-18.12.0-to-18.18.0
Drop support for Node.js <18.18.0
2 parents 7994c13 + 831449d commit c783e6f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/publish-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: "20.12.2"
22+
node-version: "20.16.0"
2323
registry-url: "https://registry.npmjs.org"
2424
- name: Set version number to environment variable
2525
run: |

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: "20.12.2"
34+
node-version: "20.16.0"
3535
- run: yarn install
3636
- run: yarn run lint
3737

@@ -41,9 +41,9 @@ jobs:
4141
strategy:
4242
matrix:
4343
node:
44-
- "18.12.0"
45-
- "18.19.0"
46-
- "20.11.0"
44+
- "18.18.0"
45+
- "18.20.4"
46+
- "20.16.0"
4747
needs:
4848
- check_test_execution_conditions
4949
steps:
@@ -63,7 +63,7 @@ jobs:
6363
- uses: actions/checkout@v4
6464
- uses: actions/setup-node@v4
6565
with:
66-
node-version: "20.12.2"
66+
node-version: "20.16.0"
6767
- run: yarn install
6868
- run: yarn run build
6969
env:

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.12.2
1+
20.16.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Qiita の Markdown 記法については[Markdown 記法 チートシート](htt
2121

2222
### 1. 事前準備
2323

24-
Qiita CLI を使うには `Node.js 18.12.0` 以上が必要です。
24+
Qiita CLI を使うには `Node.js 18.18.0` 以上が必要です。
2525
Node.js をはじめて使う場合はインストールする必要があります。
2626

2727
### 2. Qiita CLI をインストールする

actions/publish/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
steps:
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: "20.12.2"
19+
node-version: "20.16.0"
2020
- name: Install qiita-cli
2121
run: npm install -g @qiita/[email protected]
2222
shell: bash

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
},
8686
"packageManager": "[email protected]",
8787
"engines": {
88-
"node": ">=18.12.0"
88+
"node": ">=18.18.0"
8989
},
9090
"lint-staged": {
9191
"*.{js,ts,tsx}": [

0 commit comments

Comments
 (0)