chore(main): release 1.3.0 #38
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
| name: dependency-review | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| dependency-review: | |
| name: review dependencies | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Run dependency review | |
| uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0 | |
| with: | |
| comment-summary-in-pr: on-failure | |
| fail-on-scopes: runtime | |
| # Allow only OSI-approved licenses we'd actually want for runtime deps. | |
| allow-licenses: >- | |
| Apache-2.0, | |
| MIT, | |
| BSD-2-Clause, | |
| BSD-3-Clause, | |
| ISC, | |
| Python-2.0, | |
| MPL-2.0, | |
| CC0-1.0, | |
| Unlicense, | |
| 0BSD | |
| # Vetted exceptions to the license allowlist: | |
| # | |
| # typing-extensions exposes a compound SPDX expression | |
| # `Python-2.0 AND GPL-1.0-or-later AND ...` derived from the | |
| # historic CNRI Python license metadata. The package's own | |
| # License-Expression header is `PSF-2.0`. The GPL fragment is | |
| # an artefact of legacy Python distribution, not a real | |
| # licensing claim — typing-extensions is PSF-licensed and | |
| # fully Apache-2.0-compatible. | |
| allow-dependencies-licenses: 'pkg:pypi/typing-extensions' |