From afdf684437fa1bfbef1c7b237cfcddb401ea7ab6 Mon Sep 17 00:00:00 2001 From: Shakar Bakr <5h4k4r.b4kr@gmail.com> Date: Tue, 10 Jun 2025 10:32:14 +0300 Subject: [PATCH] Update action.yml to use actions/create-github-app-token@v2 for improved token generation functionality. Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a5924ad..25e325a 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ runs: - name: Generate token for private repository access if: ${{ inputs.TARGET_REPO != '' && inputs.APP_ID != '' }} id: generate-token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ inputs.APP_ID }} private-key: ${{ inputs.PRIVATE_KEY }}