diff --git a/.github/workflows/infer.yml b/.github/workflows/infer.yml index 88a25c5c..c6bbfae5 100644 --- a/.github/workflows/infer.yml +++ b/.github/workflows/infer.yml @@ -21,10 +21,10 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Generate GitHub App Token - uses: actions/create-github-app-token@v3.0.0 + uses: actions/create-github-app-token@v3.2.0 id: app_token with: - app-id: ${{ secrets.INFER_APP_ID }} + client-id: ${{ secrets.INFER_APP_ID }} private-key: ${{ secrets.INFER_APP_PRIVATE_KEY }} owner: ${{ github.repository_owner }} repositories: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cde7791f..0f8ca32f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: pull-requests: write steps: - name: Create GitHub App Token - uses: actions/create-github-app-token@v3.0.0 + uses: actions/create-github-app-token@v3.2.0 id: app_token with: - app-id: ${{ secrets.BOT_GH_APP_ID }} + client-id: ${{ secrets.BOT_GH_APP_ID }} private-key: ${{ secrets.BOT_GH_APP_PRIVATE_KEY }} owner: ${{ github.repository_owner }} repositories: |