From a149405d11cb72e177d77f33fbded002cb5e9936 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 3 Jun 2026 10:09:38 +0200 Subject: [PATCH] ci: remove deprecation warning app-id was replaced with client-id --- .github/workflows/backport.yaml | 2 +- .github/workflows/linkcheck.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml index 1682f13b6..25a7785aa 100644 --- a/.github/workflows/backport.yaml +++ b/.github/workflows/backport.yaml @@ -30,7 +30,7 @@ jobs: id: app-token uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 with: - app-id: ${{ vars.POSTGREST_CI_APP_ID }} + client-id: ${{ vars.POSTGREST_CI_APP_ID }} private-key: ${{ secrets.POSTGREST_CI_PRIVATE_KEY }} permission-contents: write permission-pull-requests: write diff --git a/.github/workflows/linkcheck.yaml b/.github/workflows/linkcheck.yaml index 1975c996f..46841d449 100644 --- a/.github/workflows/linkcheck.yaml +++ b/.github/workflows/linkcheck.yaml @@ -27,7 +27,7 @@ jobs: if: ${{ failure() && steps.linkcheck.outcome == 'failure' }} # only create the token on linkcheck failure uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 with: - app-id: ${{ vars.POSTGREST_CI_APP_ID }} + client-id: ${{ vars.POSTGREST_CI_APP_ID }} private-key: ${{ secrets.POSTGREST_CI_PRIVATE_KEY }} permission-issues: write # required for commenting on issues