diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index c6db7a53..42eccdf9 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -15,14 +15,22 @@ jobs: renovate: runs-on: ubuntu-latest steps: + - uses: actions/create-github-app-token@v3 + id: app-token + with: + client-id: ${{ vars.APP_CLIENT_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + - name: Checkout uses: actions/checkout@v6 + with: + token: ${{ steps.app-token.outputs.token }} - name: Self-hosted Renovate uses: renovatebot/github-action@f9c81dddc9b589e4e6ae0326d1e36f6bc415d230 # v39.2.4 with: configurationFile: renovate-config.js - token: ${{ secrets.RENOVATE_GITHUB_TOKEN }} + token: ${{ steps.app-token.outputs.token }} env: LOG_LEVEL: debug RENOVATE_DRY_RUN: ${{ inputs.dryRun && 'full' || null }}