Skip to content

Commit

Permalink
chore: drop node16 support (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
hung-cybo authored Oct 3, 2023
1 parent 8b9764c commit 01da128
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
name: Node.js ubuntu-latest 16.x
name: Node.js ubuntu-latest 18.x
runs-on: ubuntu-latest
steps:
# setup ruby environment before running jonabc/setup-licensed
Expand All @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: "pnpm"

- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: "pnpm"

- name: Install dependencies
Expand Down Expand Up @@ -54,10 +54,10 @@ jobs:

- uses: pnpm/action-setup@v2

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: "pnpm"

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
lint:
name: Node.js ubuntu-latest 16.x
name: Node.js ubuntu-latest 18.x
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: "pnpm"

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: "pnpm"

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand All @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yamory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: download and validate Yamory script
working-directory: /tmp
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"homepage": "https://github.com/kintone/cli-kintone/#readme",
"engines": {
"node": ">=16"
"node": ">=18"
},
"devDependencies": {
"@babel/core": "^7.23.0",
Expand Down

0 comments on commit 01da128

Please sign in to comment.