Skip to content

Commit 2b09589

Browse files
committed
Replace deprecated parameter app-id with client-id
See https://github.com/actions/create-github-app-token#client-id-or-app-id
1 parent d6da6c8 commit 2b09589

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/respec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: generate-token
2323
uses: actions/create-github-app-token@v3
2424
with:
25-
app-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
25+
client-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
2626
private-key: ${{ secrets.OAI_SPEC_PUBLISHER_PRIVATE_KEY }}
2727
owner: OAI
2828
repositories: spec.openapis.org

.github/workflows/schema-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id: generate-token
2626
uses: actions/create-github-app-token@v3
2727
with:
28-
app-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
28+
client-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
2929
private-key: ${{ secrets.OAI_SPEC_PUBLISHER_PRIVATE_KEY }}
3030
owner: OAI
3131
repositories: spec.openapis.org

.github/workflows/sync-dev-to-vX.Y-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: generate-token
2323
uses: actions/create-github-app-token@v3
2424
with:
25-
app-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
25+
client-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
2626
private-key: ${{ secrets.OAI_SPEC_PUBLISHER_PRIVATE_KEY }}
2727

2828
- name: Checkout repository

.github/workflows/sync-main-to-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: generate-token
2323
uses: actions/create-github-app-token@v3
2424
with:
25-
app-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
25+
client-id: ${{ secrets.OAI_SPEC_PUBLISHER_APPID }}
2626
private-key: ${{ secrets.OAI_SPEC_PUBLISHER_PRIVATE_KEY }}
2727

2828
- name: Checkout repository

0 commit comments

Comments
 (0)