From 8c7af18594f289432025a235f050f7e42873a744 Mon Sep 17 00:00:00 2001 From: Ben Miner Date: Tue, 14 Apr 2026 10:23:24 -0500 Subject: [PATCH] fix(ci): use client-id for create-github-app-token v3 The v3 action renamed `app-id` to `client-id` and requires the GitHub App's Client ID instead of the numeric App ID. Update both workflows to use the new `SCOPE3_WIZARD_CLIENT_ID` org variable. --- .github/workflows/regenerate-schemas.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regenerate-schemas.yml b/.github/workflows/regenerate-schemas.yml index 52a8ff7..27cf53f 100644 --- a/.github/workflows/regenerate-schemas.yml +++ b/.github/workflows/regenerate-schemas.yml @@ -17,7 +17,7 @@ jobs: id: app-token uses: actions/create-github-app-token@v3 with: - app-id: ${{ vars.SCOPE3_WIZARD_APP_ID }} + client-id: ${{ vars.SCOPE3_WIZARD_CLIENT_ID }} private-key: ${{ secrets.SCOPE3_WIZARD_APP_PRIVATE_KEY }} - uses: actions/checkout@v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4bb8a7..c059871 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: id: app-token uses: actions/create-github-app-token@v3 with: - app-id: ${{ vars.SCOPE3_WIZARD_APP_ID }} + client-id: ${{ vars.SCOPE3_WIZARD_CLIENT_ID }} private-key: ${{ secrets.SCOPE3_WIZARD_APP_PRIVATE_KEY }} - name: Checkout code