Compare commits

...

5 Commits

Author SHA1 Message Date
Vladimir Safonkin
9211491ffb Merge pull request #273 from actions/v-vlsafo/update-deps
Update npm dependencies
2022-02-24 18:33:48 +03:00
Vladimir Safonkin
edfd7b3266 Update licenses 2022-02-24 18:12:33 +03:00
Vladimir Safonkin
9744af7b74 Update dependencies 2022-02-24 18:04:55 +03:00
Vladimir Safonkin
7016f85f93 Merge pull request #271 from vsafonkin/v-vlsafo/update-node-version
Update default runtime to node16
2022-02-24 17:29:31 +03:00
Vladimir Safonkin
d292011f5d Update node version to v16 2022-02-24 11:16:01 +03:00
11 changed files with 7111 additions and 30 deletions

View File

@@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set Node.js 12.x
- name: Set Node.js 16
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
- name: Install dependencies
run: npm ci

View File

@@ -19,7 +19,7 @@ jobs:
- name: Install licensed
run: |
cd $RUNNER_TEMP
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.3.1/licensed-3.3.1-linux-x64.tar.gz
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.4.4/licensed-3.4.4-linux-x64.tar.gz
sudo tar -xzf licensed.tar.gz
sudo mv licensed /usr/local/bin/licensed
- run: licensed status

View File

@@ -21,10 +21,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Node.js 12
- name: Set Node.js 16
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
cache: npm
- run: npm ci
- run: npm run build
- run: npm run format-check

Binary file not shown.

BIN
.licenses/npm/tr46.dep.yml generated Normal file

Binary file not shown.

BIN
.licenses/npm/webidl-conversions.dep.yml generated Normal file

Binary file not shown.

BIN
.licenses/npm/whatwg-url.dep.yml generated Normal file

Binary file not shown.

View File

@@ -17,5 +17,5 @@ inputs:
description: 'Whether prerelease versions should be matched with non-exact versions (for example 5.0.0-preview.6 being matched by 5, 5.0, 5.x or 5.0.x). Defaults to false if not provided.'
required: False
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'

2252
dist/index.js vendored

File diff suppressed because one or more lines are too long

4874
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -41,7 +41,7 @@
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^12.12.62",
"@types/node": "^16.11.25",
"@types/semver": "^6.2.2",
"@zeit/ncc": "^0.21.1",
"husky": "^7.0.2",