From ef63bd86eaef47b7fbff41f3a2d550f4f85393cc Mon Sep 17 00:00:00 2001 From: Simone Carletti Date: Wed, 10 Jun 2026 12:48:07 +0200 Subject: [PATCH] ci(release): use client-id input for create-github-app-token The action deprecated the app-id input in favor of client-id, which emitted a deprecation annotation on every release run. GitHub accepts the numeric App ID as the JWT issuer (client-id is just recommended over app-id), so the existing HOMEBREW_TAP_APP_ID secret value continues to work unchanged; only the input key needs renaming. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b3a033..fbba386 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: id: tap_token uses: actions/create-github-app-token@v3.2.0 with: - app-id: ${{ secrets.HOMEBREW_TAP_APP_ID }} + client-id: ${{ secrets.HOMEBREW_TAP_APP_ID }} private-key: ${{ secrets.HOMEBREW_TAP_APP_PRIVATE_KEY }} owner: dnsimple repositories: homebrew-tap