diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 68c9948..64403ff 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,12 +3,12 @@ updates: - package-ecosystem: 'npm' directory: '/' schedule: - interval: 'monthly' + interval: 'daily' - package-ecosystem: 'github-actions' directory: '/' schedule: - interval: 'monthly' + interval: 'daily' groups: upload-download-artifact: patterns: diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index ec94353..c5236ff 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -7,9 +7,11 @@ jobs: dependabot-auto-merge: name: 'Dependabot auto merge' runs-on: ubuntu-latest + permissions: + pull-requests: write + contents: write steps: - - uses: actions/checkout@v4 - - uses: ahmadnassri/action-dependabot-auto-merge@v2 + - uses: fastify/github-action-merge-dependabot@v3 with: target: minor - github-token: ${{ secrets.READ_AND_WRITE_TOKEN }} + use-github-auto-merge: true