amplify-preview
: set amplify job info to github outputs
#535
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dependency Review Action | |
# | |
# This Action will scan dependency manifest files that change as part of a Pull | |
# Request, surfacing known-vulnerable versions of the packages declared or | |
# updated in the PR. Once installed, if the workflow run is marked as required, | |
# PRs introducing known-vulnerable packages will be blocked from merging. | |
# | |
# Source repository: https://github.com/actions/dependency-review-action | |
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement | |
name: 'Dependency Review' | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_call: | |
inputs: | |
fail-on-severity: | |
description: "Minimum severity for failing PRs. Passed through to dependency-review-action" | |
default: "low" | |
required: false | |
type: string | |
allow-ghsas: | |
description: "Allowed GHSAs. Passed through to dependency-review-action" | |
default: "" | |
required: false | |
type: string | |
allow-dependencies-licenses: | |
description: "Allowed dependency licenses. Passed through to dependency-review-action" | |
default: "" | |
required: false | |
type: string | |
allow-additional-licenses: | |
description: "Add more per-repo licenses to the shared list." | |
default: "" | |
required: false | |
type: string | |
base-ref: | |
description: "Base ref. Passed through to dependency-review-action" | |
default: "" | |
required: false | |
type: string | |
head-ref: | |
description: "Head ref. Passed through to dependency-review-action" | |
default: "" | |
required: false | |
type: string | |
jobs: | |
dependency-review: | |
name: 'Dependency Review' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: 'Dependency Review' | |
uses: actions/dependency-review-action@5bbc3ba658137598168acb2ab73b21c432dd411b # v4.2.5 | |
with: | |
fail-on-severity: ${{ inputs.fail-on-severity }} | |
# NOTE: List shouldn't end with comma | |
allow-licenses: > | |
(MIT OR Apache-2.0) AND Unicode-DFS-2016, | |
0BSD AND ISC AND MIT, | |
0BSD, | |
Apache-2.0 AND BSD-2-Clause AND CC0-1.0 AND ISC AND MIT, | |
Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT, | |
Apache-2.0 AND BSD-3-Clause, | |
Apache-2.0, | |
BlueOak-1.0.0, | |
BSD-2-Clause AND BSD-3-Clause, | |
BSD-2-Clause-FreeBSD, | |
BSD-2-Clause, | |
BSD-3-Clause AND BSD-3-Clause-Clear, | |
BSD-3-Clause, | |
CC-BY-3.0, | |
CC-BY-4.0, | |
CC0-1.0, | |
ISC AND (Apache-2.0 OR ISC) AND OpenSSL, | |
ISC AND MIT, | |
ISC, | |
LGPL-2.1, | |
MIT AND BSD-3-Clause, | |
MIT AND WTFPL, | |
MIT AND Zlib, | |
MIT-0, | |
MIT, | |
MPL-2.0, | |
ODC-By-1.0, | |
OFL-1.1, | |
Python-2.0, | |
Unicode-DFS-2016, | |
Unlicense, | |
WTFPL, | |
Zlib | |
${{ inputs.allow-additional-licenses != '' && ',' || '' }} | |
${{ inputs.allow-additional-licenses }} | |
allow-ghsas: ${{ inputs.allow-ghsas }} | |
allow-dependencies-licenses: ${{ inputs.allow-dependencies-licenses != '' && format('pkg:golang/github.com/gravitational/teleport, pkg:golang/github.com/gravitational/teleport/api, {0}', inputs.allow-dependencies-licenses) || 'pkg:golang/github.com/gravitational/teleport, pkg:golang/github.com/gravitational/teleport/api'}} | |
comment-summary-in-pr: on-failure | |
base-ref: ${{ inputs.base-ref || github.event.pull_request.base.sha || github.event.repository.default_branch }} | |
head-ref: ${{ inputs.head-ref || github.event.pull_request.head.sha || github.ref }} |