name: Run Renovate on: schedule: - cron: '21 2 * * *' workflow_dispatch: jobs: renovate: runs-on: ubuntu-latest container: ghcr.io/renovatebot/renovate:43.163.4@sha256:b9e6514e1b1feeb77a4898ecab9e6623a9c9cb495983e1b0d2646a7e3d4e81ea steps: # Step 1: Check out the repository so your config file is available - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 # Step 2: Run the official Renovate action - name: Self-hosted Renovate # uses: renovatebot/github-action@v40.1.2 run: renovate # with: # # This token is required to allow Renovate to create Pull Requests # token: ${{ secrets.RENOVATE_TOKEN }} # # Correctly specify the config file path relative to your repo root # # This action will handle mapping it into the container correctly. # configurationFile: '/workspace/kovagoadi.hu/Renovate/renovate-config.js' # # Optional: Set the log level for debugging # logLevel: debug env: RENOVATE_CONFIG_FILE: "/workspace/kovagoadi.hu/Renovate/renovate-config.js" RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}