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.
This commit is contained in:
Greyson LaLonde
2026-05-20 01:42:27 +08:00
parent fb6930d78e
commit 993fdf043b

View File

@@ -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