File tree Expand file tree Collapse file tree 3 files changed +33
-2
lines changed
Expand file tree Collapse file tree 3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -519,7 +519,8 @@ jobs:
519519
520520 steps :
521521 - name : Decide whether the needed jobs succeeded or failed
522- uses : re-actors/alls-green@release/v1
522+ # yamllint disable-line rule:line-length
523+ uses : re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
523524 with :
524525 jobs : ${{ toJSON(needs) }}
525526
Original file line number Diff line number Diff line change 1+ ---
2+
3+ # Dependency Review Action
4+ #
5+ # This Action will scan dependency manifest files that change as part of a
6+ # Pull Request, surfacing known-vulnerable versions of the packages declared
7+ # or updated in the PR.
8+ # Once installed, if the workflow run is marked as required,
9+ # PRs introducing known-vulnerable packages will be blocked from merging.
10+ #
11+ # Source repository: https://github.com/actions/dependency-review-action
12+ name : Dependency Review
13+
14+ on :
15+ pull_request :
16+
17+ permissions :
18+ contents : read
19+
20+ jobs :
21+ dependency-review :
22+ runs-on : ubuntu-latest
23+ steps :
24+ - name : Checkout Repository
25+ # yamllint disable-line rule:line-length
26+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+ - name : Dependency Review
28+ # yamllint disable-line rule:line-length
29+ uses : actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0
Original file line number Diff line number Diff line change @@ -173,7 +173,8 @@ jobs:
173173 - name : Retrieve the project source from an sdist inside the GHA artifact
174174 if : >-
175175 !contains(fromJSON('["pre-commit", "spellcheck-docs"]'), inputs.toxenv)
176- uses : re-actors/checkout-python-sdist@release/v2
176+ # yamllint disable-line rule:line-length
177+ uses : re-actors/checkout-python-sdist@187f55296b0f54d88259aaaf99af32ad3647d3bc # release/v2
177178 with :
178179 source-tarball-name : ${{ inputs.source-tarball-name }}
179180 workflow-artifact-name : ${{ inputs.dists-artifact-name }}
You can’t perform that action at this time.
0 commit comments