deps(v4): bump rcgen 0.13 → 0.14 (PR #272) #461
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: "v4: CI (shim)" | |
| # This file exists ONLY so GitHub triggers the centralized ci-v4.yml | |
| # workflow that lives on the main branch. The actual CI logic is on main — | |
| # changes to it should be made there, not here. | |
| on: | |
| push: | |
| branches: [v4] | |
| paths: | |
| - 'v4/**' | |
| - '.github/workflows/ci.yml' | |
| - '.dockerignore' | |
| - '.shellcheckrc' | |
| - '.yamllint.yml' | |
| - 'Makefile' | |
| pull_request: | |
| branches: [v4] | |
| paths-ignore: | |
| - 'CHANGELOG.md' | |
| - 'RELEASE_NOTES*.md' | |
| - '**/*.md' | |
| workflow_dispatch: | |
| # Permissions must be a SUPERSET of every nested permission the called | |
| # workflow (and its callees) requires. Reusable workflows cannot exceed | |
| # the caller's grant. Keep this list up to date when ci-v4.yml gains new | |
| # permissions. | |
| permissions: | |
| contents: write | |
| packages: write | |
| id-token: write | |
| attestations: write | |
| pull-requests: write | |
| issues: write | |
| security-events: write | |
| actions: read | |
| checks: write | |
| deployments: write | |
| statuses: write | |
| jobs: | |
| ci: | |
| name: CI | |
| uses: pacphi/sindri/.github/workflows/ci-v4.yml@main | |
| secrets: inherit |