From 6ae13de6c2326755937b4dedc2827a78c4712977 Mon Sep 17 00:00:00 2001 From: Andrea Carraro Date: Fri, 26 Jul 2024 16:06:47 +0200 Subject: [PATCH] chore: update gh actions --- .github/dependabot.yml | 4 ++-- .github/workflows/dependabot-auto-merge.yml | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) 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