From bddfa6230711bc6c531d7cb20d788576c377fb63 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sun, 10 May 2026 23:42:38 +0000 Subject: [PATCH] fix(renovate): add missing token input and remove deprecated renovate-json5 The Renovate workflow was failing because: 1. The required 'token' input was not provided 2. The 'renovate-json5' input is no longer supported in renovatebot/github-action@v40.3.0 This fix restores automated dependency updates for the repo. Resolves: CI failures on Renovate workflow --- .github/workflows/renovate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 026147d..79dcba1 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -10,5 +10,5 @@ jobs: - uses: actions/checkout@v4 - uses: renovatebot/github-action@v40.3.0 with: + token: ${{ secrets.GITHUB_TOKEN }} configurationFile: renovate.json - renovate-json5: true -- 2.52.0