chore(deps): update actions/create-github-app-token action to v2.2.1 #1624
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
| --- | |
| # GitHub Actions workflow for Renovate dependency management | |
| # Renovate automatically updates dependencies in your repository | |
| name: renovate | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| dryRun: | |
| type: boolean | |
| description: Dry-Run | |
| logLevel: | |
| type: choice | |
| description: Log-Level | |
| default: debug | |
| options: | |
| - info | |
| - debug | |
| - trace | |
| push: | |
| branches: | |
| - main | |
| - "!chore/renovate/*" | |
| schedule: | |
| - cron: 0 0-3 * * 0 | |
| env: | |
| # keep-sorted start | |
| # Set log level for debugging (info, debug, or trace) https://docs.renovatebot.com/troubleshooting/#log-debug-levels | |
| LOG_LEVEL: ${{ inputs.logLevel || 'debug' }} | |
| # Enable dry-run mode for non-main branches to preview changes (https://docs.renovatebot.com/self-hosted-configuration/#dryrun) | |
| # Run renovate in dry-run mode if executed in branches other than main to prevent updating versions in PRs/branches | |
| RENOVATE_DRY_RUN: ${{ inputs.dryRun || ( github.head_ref || github.ref_name ) != 'main' || false }} | |
| # Target repository for Renovate to update | |
| # https://docs.renovatebot.com/self-hosted-configuration/#repositories | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} | |
| # Username for Renovate commits | |
| # https://docs.renovatebot.com/self-hosted-configuration/#username | |
| RENOVATE_USERNAME: ${{ github.repository_owner }} | |
| # keep-sorted end | |
| permissions: read-all | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-24.04-arm | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| permissions: write-all | |
| steps: | |
| - uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 | |
| id: app-token | |
| with: | |
| app-id: ${{ secrets.MY_RENOVATE_GITHUB_APP_ID }} | |
| private-key: ${{ secrets.MY_RENOVATE_GITHUB_PRIVATE_KEY }} | |
| - name: 💡 Self-hosted Renovate | |
| uses: renovatebot/github-action@4ebebabcd582dddea1692b05c3d5279f8e372b53 # v44.0.0 | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} |