Skip to content

Commit

Permalink
Merge pull request #140 from curbengh/node-20
Browse files Browse the repository at this point in the history
chore(node): require node 16+
  • Loading branch information
curbengh committed Oct 1, 2023
2 parents f65e7e7 + 793bcd8 commit c964cfc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: "16.x"
- name: Cache NPM dependencies
uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
- .github/workflows/semgrep.yml
schedule:
# Weekly
- cron: '0 0 * * 0'
- cron: "0 0 * * 0"
jobs:
semgrep:
name: Scan
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
container:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ['14', '16', '18', '19']
node-version: ["16", "18", "20"]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand All @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ['14.x']
node-version: ["16.x"]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"test": "jest"
},
"engines": {
"node": ">= 14.15.0"
"node": ">= 16.13.0"
},
"author": "curben",
"license": "MIT",
Expand Down

0 comments on commit c964cfc

Please sign in to comment.