Skip to content

Update Dependencies #66722

Update Dependencies

Update Dependencies #66722

---
name: Update Dependencies
"on":
schedule:
- cron: 0/15 * * * *
jobs:
update-dependencies:
name: Update dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout
# yamllint disable-line rule:line-length
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Get token
id: get-token
# yamllint disable-line rule:line-length
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3 # v3.0.0
with:
application_id: ${{ secrets.AKI_BOT_APP_ID }}
application_private_key: ${{ secrets.AKI_BOT_APP_PRIVATE_KEY }}
revoke_token: true
permissions: >
contents:write,
issues:write,
pull_requests:write,
workflows:write
- name: Update dependencies
# yamllint disable-line rule:line-length
uses: renovatebot/github-action@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11
with:
# renovate: datasource=docker depName=ghcr.io/renovatebot/renovate
renovate-version: 37.340.5
configurationFile: renovate.json5
token: x-access-token:${{ steps.get-token.outputs.token }}