From d93a09916efdc5250110b91783c14b5324efaac5 Mon Sep 17 00:00:00 2001 From: "privilegedescalation-engineer[bot]" <269729446+privilegedescalation-engineer[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 10:51:44 +0000 Subject: [PATCH 1/2] chore(renovate): add self-hosted Renovate GitHub Action workflow --- .github/workflows/renovate.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/renovate.yml diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000000..0e3c0c3beb --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,14 @@ +name: Renovate +on: + schedule: + - cron: '0 3 * * *' + workflow_dispatch: + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: renovatebot/github-action@v40 + with: + token: ${{ secrets.GITHUB_TOKEN }} From 78f0cf5ea1be9d424bf2cda0a5080b93e41af353 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 6 May 2026 11:04:54 +0000 Subject: [PATCH 2/2] chore(renovate): pin action to v40.3.0, fix inputs per spec --- .github/workflows/renovate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 0e3c0c3beb..026147dd7a 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -3,12 +3,12 @@ on: schedule: - cron: '0 3 * * *' workflow_dispatch: - jobs: renovate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: renovatebot/github-action@v40 + - uses: renovatebot/github-action@v40.3.0 with: - token: ${{ secrets.GITHUB_TOKEN }} + configurationFile: renovate.json + renovate-json5: true