From ea44cb4fac731cc50b396f64ed59adb296713b02 Mon Sep 17 00:00:00 2001 From: bagas Date: Sun, 28 Dec 2025 07:02:56 +0000 Subject: [PATCH] Update .gitea/workflows/renovate.yml --- .gitea/workflows/renovate.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml index 1cebfa5..9f341c2 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -2,7 +2,7 @@ name: renovate on: schedule: - - cron: "@daily" + - cron: "0 0 * * *" push: branches: - renovate @@ -10,12 +10,20 @@ on: jobs: renovate: runs-on: ubuntu-latest - container: - image: ghcr.io/renovatebot/renovate:37.20.2 steps: - uses: actions/checkout@v4 - - run: renovate + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Install Renovate + run: npm install -g renovate + + - name: Run Renovate + run: renovate env: RENOVATE_CONFIG_FILE: "/workspace/{{username}}/{{repo name}/config.js" LOG_LEVEL: "debug" - RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} \ No newline at end of file + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}