chore: accept v0.33.1 for template release (#213) #450
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: Open source security | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: "47 9 * * 1" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| python-dependency-audit: | |
| name: Python dependency audit | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up Python | |
| uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| cache-dependency-path: | | |
| pyproject.toml | |
| requirements-runtime.txt | |
| requirements-guide-tooling.in | |
| requirements-guide-tooling.txt | |
| - name: Audit installed Python dependencies | |
| run: make security-audit | |
| - name: Audit runtime dependency lock | |
| run: make audit-runtime-lock | |
| - name: Validate guide tooling dependency lock | |
| run: make validate-guide-tooling-lock |