diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 418e6db..cd67ab7 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -9,7 +9,7 @@ jobs: if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Fetch metadata id: metadata @@ -19,4 +19,4 @@ jobs: run: gh pr merge --auto --merge "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} - GITHUB_TOKEN: ${{ secrets.AUTOMERGE_PAT }} + GITHUB_TOKEN: ${{ secrets.DEPENDABOT_AUTOMATION_PAT }} diff --git a/.github/workflows/dependabot-build.yml b/.github/workflows/dependabot-build.yml index e4c03de..52f56c0 100644 --- a/.github/workflows/dependabot-build.yml +++ b/.github/workflows/dependabot-build.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.ref }} - token: ${{ secrets.DEPENDABOT_AUTOBUILD }} + token: ${{ secrets.DEPENDABOT_AUTOMATION_PAT }} - name: Read .nvmrc id: nvm