From 7a0594b2f0b323ce93cda23b963a8b18626f36d1 Mon Sep 17 00:00:00 2001 From: Bryce Boe Date: Sun, 7 Jun 2026 11:04:48 -0700 Subject: [PATCH] Use client-id input for create-github-app-token The app-id input is deprecated in v3; the APP_ID secret's numeric value remains a valid token issuer, so only the input name changes. --- .github/workflows/pre-commit_autoupdate.yml | 2 +- .github/workflows/prepare_release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit_autoupdate.yml b/.github/workflows/pre-commit_autoupdate.yml index 628bb12..c8373e1 100644 --- a/.github/workflows/pre-commit_autoupdate.yml +++ b/.github/workflows/pre-commit_autoupdate.yml @@ -7,7 +7,7 @@ jobs: - id: app-token uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 with: - app-id: ${{ secrets.APP_ID }} + client-id: ${{ secrets.APP_ID }} permission-contents: write permission-pull-requests: write private-key: ${{ secrets.APP_PRIVATE_KEY }} diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index cff59af..1d261c5 100644 --- a/.github/workflows/prepare_release.yml +++ b/.github/workflows/prepare_release.yml @@ -8,7 +8,7 @@ jobs: - id: app-token uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 with: - app-id: ${{ secrets.APP_ID }} + client-id: ${{ secrets.APP_ID }} permission-contents: write permission-pull-requests: write private-key: ${{ secrets.APP_PRIVATE_KEY }}