diff options
-rw-r--r-- | .github/dependabot.yml | 10 | ||||
-rw-r--r-- | .github/renovate.js | 3 | ||||
-rw-r--r-- | .github/workflows/renovate.yaml | 30 | ||||
-rw-r--r-- | renovate.json | 13 |
4 files changed, 10 insertions, 46 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..27da349 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: cargo + directory: "/" + schedule: + interval: "daily" diff --git a/.github/renovate.js b/.github/renovate.js deleted file mode 100644 index e1ffecb..0000000 --- a/.github/renovate.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - repositories: ['ansg191/pandascore'], -}; diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml deleted file mode 100644 index 7e1b160..0000000 --- a/.github/workflows/renovate.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Renovate - -on: - schedule: - - cron: "0 4 * * *" - workflow_dispatch: - -jobs: - renovate: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - - - name: Get Token - id: get_token - uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 - with: - private-key: ${{ secrets.private_key }} - app-id: ${{ secrets.app_id }} - owner: ${{ github.repository_owner }} - repositories: 'anshulg-cluster' - - - name: Renovate - uses: renovatebot/github-action@e1db501385ddcccbaae6fb9c06befae04f379f23 # v40.2.10 - with: - configurationFile: .github/renovate.js - token: '${{ steps.get_token.outputs.token }}' - env: - LOG_LEVEL: 'debug' diff --git a/renovate.json b/renovate.json deleted file mode 100644 index ea81a9b..0000000 --- a/renovate.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:best-practices" - ], - "prHourlyLimit": 0, - "prConcurrentLimit": 0, - "platformCommit": "enabled", - "rebaseWhen": "behind-base-branch", - "pre-commit": { - "enabled": true - } -} |