From 23db059a231d2ddb05413460b2975319d4d6e1e6 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 11 May 2026 23:06:37 +0000 Subject: [PATCH] fix: add missing GITHUB_TOKEN to Renovate workflow The Renovate workflow was failing because the token parameter was removed in commit 0955832. This commit restores the required GITHUB_TOKEN parameter so Renovate can authenticate and create PRs for dependency updates. Co-Authored-By: Paperclip --- .github/workflows/renovate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 026147d..efa0500 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -10,5 +10,6 @@ jobs: - uses: actions/checkout@v4 - uses: renovatebot/github-action@v40.3.0 with: + token: ${{ secrets.GITHUB_TOKEN }} configurationFile: renovate.json renovate-json5: true