From a129c60f92537698c53f879ac6cc1931a7865b31 Mon Sep 17 00:00:00 2001 From: Philipp Wellmer Date: Tue, 9 Jun 2026 10:57:04 +0200 Subject: [PATCH] ci: use client-id for create-github-app-token create-github-app-token@v3 deprecated the app-id input in favor of client-id. Switch to client-id, backed by a new MILLIPRESS_BOT_CLIENT_ID secret (the bot app's Client ID, distinct from its numeric App ID). --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 005a131..b877f0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,7 +73,7 @@ jobs: github.event.pull_request.head.repo.full_name == github.repository) uses: actions/create-github-app-token@v3 with: - app-id: ${{ secrets.MILLIPRESS_BOT_APP_ID }} + client-id: ${{ secrets.MILLIPRESS_BOT_CLIENT_ID }} private-key: ${{ secrets.MILLIPRESS_BOT_PRIVATE_KEY }} - uses: actions/checkout@v6