From 4067c47ba7aac761d4595b850771e9e199a6a7c7 Mon Sep 17 00:00:00 2001 From: Takashi Masuda Date: Wed, 29 Apr 2026 21:11:35 +0900 Subject: [PATCH] chore: Replace deprecated 'app-id' with 'client-id' in create-github-app-token - 'app-id' was deprecated in actions/create-github-app-token v3.1.0 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c630a27..d5f0d22 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.CI_APP_ID }} + client-id: ${{ vars.CI_CLIENT_ID }} private-key: ${{ secrets.CI_APP_PRIVATE_KEY }} - uses: actions/checkout@v6 with: @@ -62,7 +62,7 @@ jobs: - uses: actions/create-github-app-token@v3 id: app-token with: - app-id: ${{ vars.RELEASE_APP_ID }} + client-id: ${{ vars.RELEASE_CLIENT_ID }} private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} owner: "masutaka" repositories: "homebrew-tap"