diff options
Diffstat (limited to '.gitea/workflows')
| -rw-r--r-- | .gitea/workflows/renovate.yml | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml index 3d8fca8..d28a3ef 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -10,10 +10,11 @@ jobs:      container: ghcr.io/renovatebot/renovate:40-full      runs-on: ubuntu-latest      steps: -      - uses: actions/checkout@v4 -      - run: renovate +      - name: Checkout repository +        uses: actions/checkout@v4 +      - name: Run Renovate updates +        run: renovate          env:            RENOVATE_CONFIG_FILE: renovate.config.cjs            RENOVATE_REPOSITORIES: ${{ gitea.repository }}            RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} -          LOG_LEVEL: debug  | 
