Files
fluffy-pancake/.github/workflows/renovate.yml
T
dependabot[bot]andGitHub fa87e9328b deps: bump renovatebot/github-action from 46.1.4 to 46.1.5
Bumps [renovatebot/github-action](https://github.com/renovatebot/github-action) from 46.1.4 to 46.1.5.
- [Release notes](https://github.com/renovatebot/github-action/releases)
- [Changelog](https://github.com/renovatebot/github-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/renovatebot/github-action/compare/0b17c4eb901eca44d018fb25744a50a74b2042df...abd08c7549b2a864af5df4a2e369c43f035a6a9d)

---
updated-dependencies:
- dependency-name: renovatebot/github-action
  dependency-version: 46.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-20 14:13:45 +00:00

32 lines
748 B
YAML

name: Renovate
on:
schedule:
# Run every 6 hours
- cron: '0 */6 * * *'
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/renovate.json5'
- '.github/workflows/renovate.yml'
jobs:
renovate:
name: Run Renovate
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
- name: Self-hosted Renovate
uses: renovatebot/github-action@abd08c7549b2a864af5df4a2e369c43f035a6a9d # v46.1.5
with:
configurationFile: .github/renovate.json5
token: ${{ secrets.GITHUB_TOKEN }}
env:
LOG_LEVEL: 'debug'