chore(deps): bump pyspnego from 0.12.1 to 0.12.2 in /lockfiles/py312 #632
Workflow file for this run
This file contains hidden or 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 | |
| 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@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0 | |
| with: | |
| egress-policy: audit | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: 'Dependency Review' | |
| uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0 | |
| with: | |
| # GHSA-h35f-9h28-mq5c against setuptools in lockfiles/py39. The only | |
| # fixed release is 83.0.0, which requires Python 3.10 and therefore | |
| # cannot go into the py39 lockfile that RHEL 8, RHEL 9 and Debian 11 | |
| # install from. The advisory covers MANIFEST.in exclusions being | |
| # bypassed while building an sdist on a Unicode-normalizing | |
| # filesystem (macOS APFS/HFS+); nothing builds an sdist from this | |
| # lockfile, and ext4/xfs do not normalize. Drop this entry once the | |
| # py39 lockfile is retired. | |
| allow-ghsas: 'GHSA-h35f-9h28-mq5c' |