Allow using a hash to restore SARIF results from a cache and reuse them.

This commit is contained in:
Chris Gavin
2020-12-09 13:53:17 +00:00
parent 8cbc02a4c2
commit 8d1985f68f
2259 changed files with 241679 additions and 12226 deletions
+60 -29
View File
@@ -1,10 +1,60 @@
{
"name": "emoji-regex",
"version": "7.0.3",
"_args": [
[
"emoji-regex@7.0.3",
"/home/chris/src/github.com/github/codeql-action"
]
],
"_development": true,
"_from": "emoji-regex@7.0.3",
"_id": "emoji-regex@7.0.3",
"_inBundle": false,
"_integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
"_location": "/table/emoji-regex",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "emoji-regex@7.0.3",
"name": "emoji-regex",
"escapedName": "emoji-regex",
"rawSpec": "7.0.3",
"saveSpec": null,
"fetchSpec": "7.0.3"
},
"_requiredBy": [
"/table/string-width"
],
"_resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
"_spec": "7.0.3",
"_where": "/home/chris/src/github.com/github/codeql-action",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"bugs": {
"url": "https://github.com/mathiasbynens/emoji-regex/issues"
},
"description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"mocha": "^5.2.0",
"regexgen": "^1.3.0",
"unicode-11.0.0": "^0.7.7",
"unicode-tr51": "^9.0.1"
},
"files": [
"LICENSE-MIT.txt",
"index.js",
"index.d.ts",
"text.js",
"es2015/index.js",
"es2015/text.js"
],
"homepage": "https://mths.be/emoji-regex",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"unicode",
"regex",
@@ -16,36 +66,17 @@
"emoji"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"main": "index.js",
"name": "emoji-regex",
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/emoji-regex.git"
"url": "git+https://github.com/mathiasbynens/emoji-regex.git"
},
"bugs": "https://github.com/mathiasbynens/emoji-regex/issues",
"files": [
"LICENSE-MIT.txt",
"index.js",
"index.d.ts",
"text.js",
"es2015/index.js",
"es2015/text.js"
],
"scripts": {
"build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js",
"test": "mocha",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"mocha": "^5.2.0",
"regexgen": "^1.3.0",
"unicode-11.0.0": "^0.7.7",
"unicode-tr51": "^9.0.1"
}
}
"types": "index.d.ts",
"version": "7.0.3"
}
+49 -12
View File
@@ -1,23 +1,54 @@
{
"name": "is-fullwidth-code-point",
"version": "2.0.0",
"description": "Check if the character represented by a given Unicode code point is fullwidth",
"license": "MIT",
"repository": "sindresorhus/is-fullwidth-code-point",
"_args": [
[
"is-fullwidth-code-point@2.0.0",
"/home/chris/src/github.com/github/codeql-action"
]
],
"_development": true,
"_from": "is-fullwidth-code-point@2.0.0",
"_id": "is-fullwidth-code-point@2.0.0",
"_inBundle": false,
"_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
"_location": "/table/is-fullwidth-code-point",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "is-fullwidth-code-point@2.0.0",
"name": "is-fullwidth-code-point",
"escapedName": "is-fullwidth-code-point",
"rawSpec": "2.0.0",
"saveSpec": null,
"fetchSpec": "2.0.0"
},
"_requiredBy": [
"/table/slice-ansi",
"/table/string-width"
],
"_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
"_spec": "2.0.0",
"_where": "/home/chris/src/github.com/github/codeql-action",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues"
},
"description": "Check if the character represented by a given Unicode code point is fullwidth",
"devDependencies": {
"ava": "*",
"xo": "*"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme",
"keywords": [
"fullwidth",
"full-width",
@@ -35,11 +66,17 @@
"detect",
"check"
],
"devDependencies": {
"ava": "*",
"xo": "*"
"license": "MIT",
"name": "is-fullwidth-code-point",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git"
},
"scripts": {
"test": "xo && ava"
},
"version": "2.0.0",
"xo": {
"esnext": true
}
}
}
+55 -19
View File
@@ -1,18 +1,56 @@
{
"name": "slice-ansi",
"version": "2.1.0",
"_args": [
[
"slice-ansi@2.1.0",
"/home/chris/src/github.com/github/codeql-action"
]
],
"_development": true,
"_from": "slice-ansi@2.1.0",
"_id": "slice-ansi@2.1.0",
"_inBundle": false,
"_integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==",
"_location": "/table/slice-ansi",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "slice-ansi@2.1.0",
"name": "slice-ansi",
"escapedName": "slice-ansi",
"rawSpec": "2.1.0",
"saveSpec": null,
"fetchSpec": "2.1.0"
},
"_requiredBy": [
"/table"
],
"_resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz",
"_spec": "2.1.0",
"_where": "/home/chris/src/github.com/github/codeql-action",
"bugs": {
"url": "https://github.com/chalk/slice-ansi/issues"
},
"dependencies": {
"ansi-styles": "^3.2.0",
"astral-regex": "^1.0.0",
"is-fullwidth-code-point": "^2.0.0"
},
"description": "Slice a string with ANSI escape codes",
"license": "MIT",
"repository": "chalk/slice-ansi",
"devDependencies": {
"ava": "^1.1.0",
"chalk": "^2.4.2",
"random-item": "^1.0.0",
"strip-ansi": "^5.0.0",
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"homepage": "https://github.com/chalk/slice-ansi#readme",
"keywords": [
"slice",
"string",
@@ -36,16 +74,14 @@
"command-line",
"text"
],
"dependencies": {
"ansi-styles": "^3.2.0",
"astral-regex": "^1.0.0",
"is-fullwidth-code-point": "^2.0.0"
"license": "MIT",
"name": "slice-ansi",
"repository": {
"type": "git",
"url": "git+https://github.com/chalk/slice-ansi.git"
},
"devDependencies": {
"ava": "^1.1.0",
"chalk": "^2.4.2",
"random-item": "^1.0.0",
"strip-ansi": "^5.0.0",
"xo": "^0.24.0"
}
}
"scripts": {
"test": "xo && ava"
},
"version": "2.1.0"
}
+53 -17
View File
@@ -1,23 +1,58 @@
{
"name": "string-width",
"version": "3.1.0",
"description": "Get the visual width of a string - the number of columns required to display it",
"license": "MIT",
"repository": "sindresorhus/string-width",
"_args": [
[
"string-width@3.1.0",
"/home/chris/src/github.com/github/codeql-action"
]
],
"_development": true,
"_from": "string-width@3.1.0",
"_id": "string-width@3.1.0",
"_inBundle": false,
"_integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
"_location": "/table/string-width",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "string-width@3.1.0",
"name": "string-width",
"escapedName": "string-width",
"rawSpec": "3.1.0",
"saveSpec": null,
"fetchSpec": "3.1.0"
},
"_requiredBy": [
"/table"
],
"_resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
"_spec": "3.1.0",
"_where": "/home/chris/src/github.com/github/codeql-action",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/string-width/issues"
},
"dependencies": {
"emoji-regex": "^7.0.1",
"is-fullwidth-code-point": "^2.0.0",
"strip-ansi": "^5.1.0"
},
"description": "Get the visual width of a string - the number of columns required to display it",
"devDependencies": {
"ava": "^1.0.1",
"xo": "^0.23.0"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/string-width#readme",
"keywords": [
"string",
"str",
@@ -44,13 +79,14 @@
"korean",
"fixed-width"
],
"dependencies": {
"emoji-regex": "^7.0.1",
"is-fullwidth-code-point": "^2.0.0",
"strip-ansi": "^5.1.0"
"license": "MIT",
"name": "string-width",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/string-width.git"
},
"devDependencies": {
"ava": "^1.0.1",
"xo": "^0.23.0"
}
}
"scripts": {
"test": "xo && ava"
},
"version": "3.1.0"
}
+52 -16
View File
@@ -1,24 +1,58 @@
{
"name": "strip-ansi",
"version": "5.2.0",
"description": "Strip ANSI escape codes from a string",
"license": "MIT",
"repository": "chalk/strip-ansi",
"_args": [
[
"strip-ansi@5.2.0",
"/home/chris/src/github.com/github/codeql-action"
]
],
"_development": true,
"_from": "strip-ansi@5.2.0",
"_id": "strip-ansi@5.2.0",
"_inBundle": false,
"_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"_location": "/table/strip-ansi",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "strip-ansi@5.2.0",
"name": "strip-ansi",
"escapedName": "strip-ansi",
"rawSpec": "5.2.0",
"saveSpec": null,
"fetchSpec": "5.2.0"
},
"_requiredBy": [
"/table/string-width"
],
"_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"_spec": "5.2.0",
"_where": "/home/chris/src/github.com/github/codeql-action",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/chalk/strip-ansi/issues"
},
"dependencies": {
"ansi-regex": "^4.1.0"
},
"description": "Strip ANSI escape codes from a string",
"devDependencies": {
"ava": "^1.3.1",
"tsd-check": "^0.5.0",
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava && tsd-check"
},
"files": [
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/chalk/strip-ansi#readme",
"keywords": [
"strip",
"trim",
@@ -43,12 +77,14 @@
"command-line",
"text"
],
"dependencies": {
"ansi-regex": "^4.1.0"
"license": "MIT",
"name": "strip-ansi",
"repository": {
"type": "git",
"url": "git+https://github.com/chalk/strip-ansi.git"
},
"devDependencies": {
"ava": "^1.3.1",
"tsd-check": "^0.5.0",
"xo": "^0.24.0"
}
}
"scripts": {
"test": "xo && ava && tsd-check"
},
"version": "5.2.0"
}
+40 -3
View File
@@ -1,9 +1,45 @@
{
"_args": [
[
"table@5.4.6",
"/home/chris/src/github.com/github/codeql-action"
]
],
"_development": true,
"_from": "table@5.4.6",
"_id": "table@5.4.6",
"_inBundle": false,
"_integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
"_location": "/table",
"_phantomChildren": {
"ansi-regex": "4.1.0",
"ansi-styles": "3.2.1",
"astral-regex": "1.0.0"
},
"_requested": {
"type": "version",
"registry": true,
"raw": "table@5.4.6",
"name": "table",
"escapedName": "table",
"rawSpec": "5.4.6",
"saveSpec": null,
"fetchSpec": "5.4.6"
},
"_requiredBy": [
"/eslint"
],
"_resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
"_spec": "5.4.6",
"_where": "/home/chris/src/github.com/github/codeql-action",
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"email": "gajus@gajus.com",
"url": "http://gajus.com"
},
"bugs": {
"url": "https://github.com/gajus/table/issues"
},
"dependencies": {
"ajv": "^6.10.2",
"lodash": "^4.17.14",
@@ -40,6 +76,7 @@
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/gajus/table#readme",
"husky": {
"hooks": {
"post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
@@ -71,7 +108,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/table"
"url": "git+https://github.com/gajus/table.git"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && npm run create-validators && flow-copy-source src dist",
@@ -81,4 +118,4 @@
"test": "mocha --require @babel/register"
},
"version": "5.4.6"
}
}