From 864828821c1a4d88b6fa65292848e1489248f93e Mon Sep 17 00:00:00 2001 From: Vilsol Date: Wed, 19 Jun 2024 10:44:53 +0300 Subject: [PATCH] chore: add renovate bot --- .github/workflows/renovate.yml | 16 ++++++++++++++++ renovate.json | 15 +++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .github/workflows/renovate.yml create mode 100644 renovate.json diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 00000000..b882af2d --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,16 @@ +name: Renovate +on: + workflow_dispatch: + schedule: + - cron: '0 * * * *' + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: renovatebot/github-action@v40.1.12 + with: + configurationFile: renovate.json + token: ${{ secrets.RENOVATE_TOKEN }} diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..c7d7761c --- /dev/null +++ b/renovate.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "ignorePaths": ["generated/**"], + "extends": [ + "config:recommended", + "mergeConfidence:all-badges" + ], + "osvVulnerabilityAlerts": true, + "rangeStrategy": "bump", + "dependencyDashboardOSVVulnerabilitySummary": "all", + "vulnerabilityAlerts": { + "labels": ["security"] + }, + "labels": ["dependency"] +}