chore(deps): update ci and dev tooling (major) (#1551) #1346
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: validate-renovate-config | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/validate-renovate-config.yml' | |
| - '.github/renovate.json5' | |
| push: | |
| branches: [main] | |
| permissions: {} | |
| jobs: | |
| validate-renovate-config: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 | |
| with: | |
| version: '10.33.0' | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: '24' | |
| # Avoid installing packages that are newer than 1 week old to reduce supply chain attacks probability. | |
| - run: pnpm config set minimumReleaseAge 10080 | |
| - run: pnpm --package renovate dlx renovate-config-validator |