Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
651d22c5d5 | ||
|
|
02b13f6b52 | ||
|
|
6e0fa26ac3 |
@@ -171,7 +171,7 @@ The Dependency Review GitHub Action check will only block a pull request from be
|
|||||||
> Action outputs are unicode strings [with a 1MB size limit](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-docker-container-and-javascript-actions).
|
> Action outputs are unicode strings [with a 1MB size limit](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-docker-container-and-javascript-actions).
|
||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> If you use these outputs in a run-step, you must store the ouput data in an envrioment variable instead of using the output directly. Using an output directly might break shell scripts. For example:
|
> If you use these outputs in a run-step, you must store the output data in an environment variable instead of using the output directly. Using an output directly might break shell scripts. For example:
|
||||||
>
|
>
|
||||||
> ```yaml
|
> ```yaml
|
||||||
> env:
|
> env:
|
||||||
|
|||||||
+10
-7
@@ -1,5 +1,13 @@
|
|||||||
# Avoid using default values for options here since they will
|
# IMPORTANT
|
||||||
# end up overriding external configurations.
|
#
|
||||||
|
# Avoid setting default values for configuration options in
|
||||||
|
# this file, they will overwrite external configurations.
|
||||||
|
#
|
||||||
|
# If you are trying to find out the default value for a config
|
||||||
|
# option please take a look at the README or src/schemas.ts.
|
||||||
|
#
|
||||||
|
# If you are adding an option, make sure the Zod definition
|
||||||
|
# contains a default value.
|
||||||
name: 'Dependency Review'
|
name: 'Dependency Review'
|
||||||
description: 'Prevent the introduction of dependencies with known vulnerabilities'
|
description: 'Prevent the introduction of dependencies with known vulnerabilities'
|
||||||
author: 'GitHub'
|
author: 'GitHub'
|
||||||
@@ -56,23 +64,18 @@ inputs:
|
|||||||
retry-on-snapshot-warnings:
|
retry-on-snapshot-warnings:
|
||||||
description: Whether to retry on snapshot warnings
|
description: Whether to retry on snapshot warnings
|
||||||
required: false
|
required: false
|
||||||
default: false
|
|
||||||
retry-on-snapshot-warnings-timeout:
|
retry-on-snapshot-warnings-timeout:
|
||||||
description: Number of seconds to wait before stopping snapshot retries.
|
description: Number of seconds to wait before stopping snapshot retries.
|
||||||
required: false
|
required: false
|
||||||
default: 120
|
|
||||||
warn-only:
|
warn-only:
|
||||||
description: When set to `true` this action will always complete with success, overriding the `fail-on-severity` parameter.
|
description: When set to `true` this action will always complete with success, overriding the `fail-on-severity` parameter.
|
||||||
required: false
|
required: false
|
||||||
default: false
|
|
||||||
show-openssf-scorecard:
|
show-openssf-scorecard:
|
||||||
description: Show a summary of the OpenSSF Scorecard scores.
|
description: Show a summary of the OpenSSF Scorecard scores.
|
||||||
required: false
|
required: false
|
||||||
default: true
|
|
||||||
warn-on-openssf-scorecard-level:
|
warn-on-openssf-scorecard-level:
|
||||||
description: Numeric threshold for the OpenSSF Scorecard score. If the score is below this threshold, the action will warn you.
|
description: Numeric threshold for the OpenSSF Scorecard score. If the score is below this threshold, the action will warn you.
|
||||||
required: false
|
required: false
|
||||||
default: 3
|
|
||||||
outputs:
|
outputs:
|
||||||
comment-content:
|
comment-content:
|
||||||
description: Prepared dependency report comment
|
description: Prepared dependency report comment
|
||||||
|
|||||||
Reference in New Issue
Block a user