Compare commits
27 Commits
start-semver
...
v1
| Author | SHA1 | Date | |
|---|---|---|---|
| a9c83d3af6 | |||
| f4b10ab0c4 | |||
| a4da1f9048 | |||
| 19edfd7243 | |||
| 0be808458e | |||
| 77396f2e4f | |||
| 9bc6bded9e | |||
| 3b26a2a544 | |||
| 7517e23bfc | |||
| cdae254423 | |||
| a257e84a2f | |||
| e0be07f423 | |||
| 4b83e15691 | |||
| e4396493ba | |||
| 8ba008fb62 | |||
| 5ce46b3424 | |||
| 9680f24ea3 | |||
| 9cdb91e238 | |||
| 92e8876693 | |||
| c91da44591 | |||
| b988161c8f | |||
| a086ec5a2d | |||
| b40a0040b5 | |||
| dcc694e92a | |||
| dfafa144e7 | |||
| 7a2877d9c8 | |||
| 265d6e12a9 |
@@ -28,6 +28,8 @@ jobs:
|
||||
uses: actions/dependency-review-action@v1
|
||||
```
|
||||
|
||||
Please keep in mind that you need a GitHub Advanced Security license if you're running this Action on private repos.
|
||||
|
||||
## Getting help
|
||||
|
||||
If you have bug reports, questions or suggestions please [create a new
|
||||
|
||||
+541
-398
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
Generated
+509
-370
File diff suppressed because it is too large
Load Diff
+8
-8
@@ -25,24 +25,24 @@
|
||||
"author": "GitHub",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.8.0",
|
||||
"@actions/github": "^5.0.1",
|
||||
"@actions/core": "^1.8.2",
|
||||
"@actions/github": "^5.0.3",
|
||||
"@octokit/plugin-retry": "^3.0.9",
|
||||
"@octokit/request-error": "^2.1.0",
|
||||
"ansi-styles": "^6.1.0",
|
||||
"got": "^12.0.4",
|
||||
"nodemon": "^2.0.16",
|
||||
"zod": "^3.15.1"
|
||||
"zod": "^3.17.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^17.0.31",
|
||||
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
||||
"@typescript-eslint/parser": "^5.22.0",
|
||||
"@types/node": "^17.0.35",
|
||||
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
||||
"@typescript-eslint/parser": "^5.26.0",
|
||||
"@vercel/ncc": "^0.33.4",
|
||||
"esbuild-register": "^3.3.2",
|
||||
"eslint": "^8.15.0",
|
||||
"eslint": "^8.16.0",
|
||||
"eslint-plugin-github": "^4.3.6",
|
||||
"eslint-plugin-jest": "^26.1.5",
|
||||
"eslint-plugin-jest": "^26.2.2",
|
||||
"jest": "^27.5.1",
|
||||
"js-yaml": "^4.1.0",
|
||||
"nodemon": "^2.0.16",
|
||||
|
||||
+6
-2
@@ -60,8 +60,12 @@ async function run(): Promise<void> {
|
||||
core.setFailed(
|
||||
`Dependency review is not supported on this repository. Please ensure that Dependency graph is enabled, see https://github.com/${github.context.repo.owner}/${github.context.repo.repo}/settings/security_analysis`
|
||||
)
|
||||
} else if (error instanceof Error) {
|
||||
core.setFailed(error.message)
|
||||
} else {
|
||||
if (error instanceof Error) {
|
||||
core.setFailed(error.message)
|
||||
} else {
|
||||
core.setFailed('Unexpected fatal error')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user