From 993fdf043b18aafc22f6da5d2b784ecbf2c260cc Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Wed, 20 May 2026 01:42:27 +0800 Subject: [PATCH] ci: replace archived tibdex/github-app-token with actions/create-github-app-token The tibdex action is archived. Switches to the maintained actions/create-github-app-token (pinned to v3.2.0 SHA) and renames the inputs from app_id/private_key to app-id/private-key. The token output name is unchanged, so downstream references continue to work. --- .github/workflows/generate-tool-specs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generate-tool-specs.yml b/.github/workflows/generate-tool-specs.yml index 2721bba48..af6fc7195 100644 --- a/.github/workflows/generate-tool-specs.yml +++ b/.github/workflows/generate-tool-specs.yml @@ -22,10 +22,10 @@ jobs: steps: - name: Generate GitHub App token id: app-token - uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2 + uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 with: - app_id: ${{ secrets.CREWAI_TOOL_SPECS_APP_ID }} - private_key: ${{ secrets.CREWAI_TOOL_SPECS_PRIVATE_KEY }} + app-id: ${{ secrets.CREWAI_TOOL_SPECS_APP_ID }} + private-key: ${{ secrets.CREWAI_TOOL_SPECS_PRIVATE_KEY }} - name: Checkout code uses: actions/checkout@v4