chore(ci) update dependencies

Signed-off-by: Matthieu MOREL <mmorel-35@users.noreply.github.com>
Co-Authored-By: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
MOREL Matthieu 2021-08-20 23:23:46 +02:00
parent 331ce1d993
commit e440d68e55
18 changed files with 9723 additions and 11164 deletions

28
.github/workflows/licensed-cache.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Licensed cache
on:
push:
branches:
- main
paths:
- package-lock.json
workflow_dispatch:
jobs:
update_licenses_cache:
runs-on: ubuntu-latest
name: Update licenses cache
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: npm ci
- uses: jonabc/setup-licensed@v1
with:
version: '3.x'
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: jonabc/licensed-ci@v1
with:
user_name: ${{ github.actor }}
user_email: ${{ github.actor }}@users.noreply.github.com
github_token: ${{ secrets.GITHUB_TOKEN }}

View File

@ -35,4 +35,4 @@ jobs:
- name: audit packages
run: npm audit --audit-level=high
if: matrix.operating-system == 'ubuntu-latest'
if: matrix.operating-system == 'ubuntu-latest'

View File

@ -2,13 +2,11 @@ sources:
npm: true
allowed:
- 0bsd
- apache-2.0
- bsd-2-clause
- bsd-3-clause
- cc0-1.0
- isc
- mit
- cc0-1.0
- unlicense
reviewed:
npm:
- unlicense

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.licenses/npm/lru-cache.dep.yml generated Normal file

Binary file not shown.

BIN
.licenses/npm/semver-7.3.5.dep.yml generated Normal file

Binary file not shown.

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

Binary file not shown.

9444
dist/index.js vendored

File diff suppressed because it is too large Load Diff

11363
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,22 +23,22 @@
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/http-client": "^1.0.6",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.5.5",
"semver": "^6.1.1"
"@actions/core": "^1.5.0",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@zeit/ncc": "^0.21.0",
"jest": "^25.2.1",
"jest-circus": "^24.7.1",
"nock": "^10.0.6",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.8.3"
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/semver": "^7.3.8",
"@vercel/ncc": "^0.29.2",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"nock": "^13.1.2",
"prettier": "^1.19.1",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
}
}

View File

@ -40,12 +40,11 @@ export async function run() {
core.info(`##[add-matcher]${matchersPath}`);
// output the version actually being used
let goPath = await io.which('go');
let goVersion = (cp.execSync(`${goPath} version`) || '').toString();
let goVersion = (cp.execSync(`go version`) || '').toString();
core.info(goVersion);
core.startGroup('go env');
let goEnv = (cp.execSync(`${goPath} env`) || '').toString();
let goEnv = (cp.execSync(`go env`) || '').toString();
core.info(goEnv);
core.endGroup();
} catch (error) {

View File

@ -1,4 +1,4 @@
let os = require('os');
import os from 'os';
export function getPlatform(): string {
// darwin and linux match already

View File

@ -4,9 +4,6 @@
// "incremental": true, /* Enable incremental compilation */
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"lib": [
"es6"
],
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
@ -41,7 +38,7 @@
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
/* Module Resolution Options */
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */