chore(ci): supply-chain minimum-release-age gate + Renovate onboarding #1
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: dep-age-check | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| age-gate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 # need the base ref to diff lockfiles | |
| - uses: convertcom/supply-chain@1e6559ce3128a1c80f2bf5ad780c79ffa75af751 # seed | |
| with: | |
| # Warn-only for the initial bake; flip to `block` + required check | |
| # once we've confirmed no false positives on main. | |
| mode: warn |