Skip to content

Renovate

Renovate #21

Workflow file for this run

name: Renovate
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
contents: read
jobs:
renovate:
runs-on: ubuntu-latest
if: ${{ github.repository == 'wasmCloud/go' }}
steps:
- id: app-token
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
with:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run Renovate
uses: renovatebot/github-action@2be773c4be8361d8182cc1b750e75bbc75af71b0 # v41.0.7
with:
configurationFile: .github/renovate.json
token: ${{ steps.app-token.outputs.token }}