From 80d0caaff9b5bbfe178b509607f288ecd023251a 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 34a23c250..005af4d00 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 cf0689f57..98f6d41de 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