mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2026-03-13 02:18:16 +01:00
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.8.1 to 4.8.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/dependency-review-action/releases">actions/dependency-review-action's releases</a>.</em></p> <blockquote> <h2>v4.8.2</h2> <p>Minor fixes:</p> <ul> <li>Fix PURL parsing for scoped packages (<a href="https://redirect.github.com/actions/dependency-review-action/issues/1008">#1008</a> from <a href="https://github.com/danielhardej"><code>@danielhardej</code></a>)</li> <li>Fix for large summaries (<a href="https://redirect.github.com/actions/dependency-review-action/issues/1007">#1007</a> from <a href="https://github.com/gitulisca"><code>@gitulisca</code></a>)</li> <li>README includes a working example for allow-dependencies-licenses (<a href="https://redirect.github.com/actions/dependency-review-action/issues/1009">#1009</a> from <a href="https://github.com/danielhardej"><code>@danielhardej</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="3c4e3dcb1a"><code>3c4e3dc</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1016">#1016</a> from actions/dra-release</li> <li><a href="02930b2072"><code>02930b2</code></a> Update CONTRIBUTING to reflect new guidelines</li> <li><a href="49ffd9f636"><code>49ffd9f</code></a> Update CONTRIBUTING to reflect the need to build</li> <li><a href="70cb25ec56"><code>70cb25e</code></a> 4.8.2 release</li> <li><a href="ebabd31cea"><code>ebabd31</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1008">#1008</a> from danielhardej/danielhardej-patch-20251023</li> <li><a href="19f9360983"><code>19f9360</code></a> Update package-lock.json</li> <li><a href="5fd2f98b4f"><code>5fd2f98</code></a> Bump <code>@types/jest</code> to version 29.5.14</li> <li><a href="28647f4804"><code>28647f4</code></a> Fix PURL parsing by removing encodeURI</li> <li><a href="f620fd175c"><code>f620fd1</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1013">#1013</a> from actions/dangoor/token-fix</li> <li><a href="9b42b7e9a9"><code>9b42b7e</code></a> Remove bad token reference</li> <li>Additional commits viewable in <a href="40c09b7dc9...3c4e3dcb1a">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
970 B
YAML
28 lines
970 B
YAML
# 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
|
|
name: "Dependency Review"
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
dependency-review:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: "Checkout Repository"
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
- name: "Dependency Review"
|
|
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2
|