From d3d9e3f92bbdfe47501474d720f7b70916212eb7 Mon Sep 17 00:00:00 2001 From: Liam Hughes Date: Fri, 24 Apr 2026 12:56:42 +1000 Subject: [PATCH 1/2] renovatebot/github-action@v46.1.10 --- .github/workflows/update-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index b756e3d2a..add45905b 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v6 - name: Self-hosted Renovate - uses: renovatebot/github-action@v39.2.4 + uses: renovatebot/github-action@v46.1.10 with: configurationFile: renovate-config.js token: ${{ secrets.RENOVATE_GITHUB_TOKEN }} From c0f2941ffca0c8de40caf0c98008f5feee3361c8 Mon Sep 17 00:00:00 2001 From: Liam Hughes Date: Fri, 24 Apr 2026 13:21:21 +1000 Subject: [PATCH 2/2] Clear node_modules after build --- renovate-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate-config.js b/renovate-config.js index 50649fd28..d2f61f3c9 100644 --- a/renovate-config.js +++ b/renovate-config.js @@ -34,7 +34,7 @@ module.exports = { }, allowedPostUpgradeCommands: [".*"], postUpgradeTasks: { - commands: ["npm i -g pnpm@8.15.9", "pnpm install", "pnpm build"], + commands: ["npm i -g pnpm@8.15.9", "pnpm install", "pnpm build", "rm -rf node_modules packages/*/node_modules"], fileFilters: ["**/index.js"], executionMode: "update", },