From f53488121fb56f1bfa26dc198334383cad9455dc Mon Sep 17 00:00:00 2001 From: Tim Dittler Date: Tue, 13 Feb 2024 13:19:58 +0100 Subject: [PATCH] Replace tibdex app token action by one from GitHub --- .github/workflows/template_autodev.yml | 6 +++--- .github/workflows/template_automerge_dependabot.yml | 6 +++--- .github/workflows/template_release_drafter.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/template_autodev.yml b/.github/workflows/template_autodev.yml index 37fd364a..5a044825 100644 --- a/.github/workflows/template_autodev.yml +++ b/.github/workflows/template_autodev.yml @@ -67,11 +67,11 @@ jobs: steps: - name: Get App Token if: ${{ env.USING_APP_CREDENTIALS == 'true' }} - uses: tibdex/github-app-token@v2.1.0 + uses: actions/create-github-app-token@v1.8.0 id: get_token with: - app_id: ${{ secrets.app_id }} - private_key: ${{ secrets.private_key }} + app-id: ${{ secrets.app_id }} + private-key: ${{ secrets.private_key }} - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/template_automerge_dependabot.yml b/.github/workflows/template_automerge_dependabot.yml index 8cb1d5e7..d50a4481 100644 --- a/.github/workflows/template_automerge_dependabot.yml +++ b/.github/workflows/template_automerge_dependabot.yml @@ -24,11 +24,11 @@ jobs: steps: - name: Get App Token - uses: tibdex/github-app-token@v2.1.0 + uses: actions/create-github-app-token@v1.8.0 id: get_token with: - app_id: ${{ secrets.app_id }} - private_key: ${{ secrets.private_key }} + app-id: ${{ secrets.app_id }} + private-key: ${{ secrets.private_key }} - name: Load dependabot metadata id: metadata diff --git a/.github/workflows/template_release_drafter.yml b/.github/workflows/template_release_drafter.yml index fcebdbf3..f692436e 100644 --- a/.github/workflows/template_release_drafter.yml +++ b/.github/workflows/template_release_drafter.yml @@ -36,11 +36,11 @@ jobs: steps: - name: Get App Token if: ${{ env.USING_APP_CREDENTIALS == 'true' }} - uses: tibdex/github-app-token@v2.1.0 + uses: actions/create-github-app-token@v1.8.0 id: get_token with: - app_id: ${{ secrets.app_id }} - private_key: ${{ secrets.private_key }} + app-id: ${{ secrets.app_id }} + private-key: ${{ secrets.private_key }} - name: Update Release uses: release-drafter/release-drafter@v6.0.0