From 64215ffda56b70f401811e6ef8c5dada81ac83b7 Mon Sep 17 00:00:00 2001 From: official-Cromatin Date: Sun, 21 Sep 2025 17:30:57 +0200 Subject: [PATCH] Ditch docker approach and run renovate directly --- .github/workflows/renovate.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 426d345..276b6db 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -16,10 +16,18 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - name: Run Self-Hosted Renovate - uses: renovatebot/github-action@v43.0.12 + - name: Setup Node.js + uses: actions/setup-node@v3 with: - docker-cmd-file: .github/renovate-entrypoint.sh - docker-user: root - token: ${{ secrets.GITHUB_TOKEN }} - docker-volumes: ${{ github.workspace }}:/github/workspace + node-version: '20' + + - name: Install Renovate + run: npm install -g renovate + + - name: Run Renovate + env: + RENOVATE_TOKEN: ${{ secrets.GITHUB_TOKEN }} + LOG_LEVEL: debug + run: | + cd ${{ github.workspace }} + renovate --platform=github