diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml deleted file mode 100644 index 2fbd97ad..00000000 --- a/.forgejo/workflows/build.yaml +++ /dev/null @@ -1,14 +0,0 @@ -on: [push] -jobs: - renovate: - name: Renovate - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Renovate - uses: https://github.com/renovatebot/github-action@v40.1.11 - with: - configurationFile: .forgejo/renovate.json5 - token: "${{ secrets.RENOVATE_TOKEN }}" diff --git a/.forgejo/workflows/renovate.yaml b/.forgejo/workflows/renovate.yaml new file mode 100644 index 00000000..a37d473f --- /dev/null +++ b/.forgejo/workflows/renovate.yaml @@ -0,0 +1,21 @@ +on: [push] +jobs: + renovate: + name: Renovate + runs-on: ubuntu-latest + container: + image: ghcr.io/visualon/renovate:37.363.4@sha256:8c6e868c1ff7190f243d20dbeef44c86fc9b1dcdf344c4ece45facdfe3416cb7 + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + show-progress: false + + - name: Renovate + uses: ./.forgejo/actions/renovate + with: + endpoint: ${{ github.server_url }} + token: ${{ secrets.RENOVATE_TOKEN }} + github-token: ${{ secrets.GH_TOKEN }} + args: ${{ github.repository }} + save-cache: false