fix(ci): replace JS-based Renovate action with direct container invocation #73

Merged
sarman merged 1 commits from fix/renovate-no-node-runner into master 2026-06-07 01:59:47 +00:00

View File

@ -8,17 +8,15 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: renovate/renovate:latest
steps: steps:
- name: Checkout - name: Run Renovate
uses: actions/checkout@v4 run: renovate
with:
ref: ${{ github.ref_name }}
- name: Self-hosted Renovate
uses: renovatebot/github-action@v41.0.0
with:
token: ${{ secrets.RENOVATE_TOKEN }}
env: env:
RENOVATE_ENDPOINT: https://gogs.tftsr.com/api/v3 RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_PLATFORM: gitea RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://gogs.tftsr.com/api/v3
RENOVATE_AUTODISCOVER: 'false'
RENOVATE_REPOSITORIES: '["sarman/tftsr-devops_investigation"]'
RENOVATE_AUTOMERGE: 'false' RENOVATE_AUTOMERGE: 'false'