chore(deps): update actions/create-github-app-token digest to fee1f7d #28
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: Validate Renovate | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/renovate.yml" | |
| - ".github/renovate.json" | |
| - ".github/renovate.json5" | |
| - "renovate.json" | |
| - "renovate.json5" | |
| - "org-inherited-config.json" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7 | |
| with: | |
| node-version: latest | |
| # Hosted Renovate should use the latest available version, so always | |
| # install the newest version of Renovate | |
| - name: Install dependencies | |
| shell: bash | |
| env: | |
| RENOVATE_VERSION: latest | |
| run: npm install -g renovate@${RENOVATE_VERSION} | |
| - name: Validate Renovate config | |
| env: | |
| CONFIG_FILE: 'org-inherited-config.json' | |
| run: renovate-config-validator --strict ${CONFIG_FILE} |