From f384d4116ae2655d79295bde4761fcc2e5299c14 Mon Sep 17 00:00:00 2001 From: Seungwoo321 Date: Wed, 18 Jun 2025 20:48:42 +0900 Subject: [PATCH] chore: switch to official GitHub App token action --- .github/workflows/release.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2837e8e..bb35628 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,23 +17,12 @@ jobs: pull-requests: write id-token: write steps: - - name: Debug secrets - run: | - echo "APP_ID length: ${#APP_ID}" - echo "PRIVATE_KEY length: ${#PRIVATE_KEY}" - echo "INSTALLATION_ID length: ${#INSTALLATION_ID}" - env: - APP_ID: ${{ secrets.APP_ID }} - PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} - INSTALLATION_ID: ${{ secrets.APP_INSTALLATION_ID }} - - name: Generate GitHub App Token id: generate-token - uses: tibdex/github-app-token@v1 + uses: actions/create-github-app-token@v1 with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} - installation_id: ${{ secrets.APP_INSTALLATION_ID }} + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} - name: Checkout uses: actions/checkout@v4