Skip to content

Commit 9e545ff

Browse files
chore(root): replace deprecated app-id with client-id in audit-api-spec
The actions/create-github-app-token action deprecated the app-id input in favour of client-id. Every CI run produced a warning annotation "Input app-id has been deprecated with message. Use client-id instead." Rename app-id to client-id and upgrade to v3 to eliminate the warning. Ticket: AI-254
1 parent 29bfefe commit 9e545ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/audit-api-spec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ jobs:
234234
EOF
235235
- name: Generate GitHub App Token
236236
id: generate-github-app-token
237-
uses: actions/create-github-app-token@v2
237+
uses: actions/create-github-app-token@v3
238238
with:
239-
app-id: ${{ env.STATIC_ANALYSIS_BOT_APP_ID }}
239+
client-id: ${{ env.STATIC_ANALYSIS_BOT_APP_ID }}
240240
private-key: ${{ secrets.STATIC_ANALYSIS_BOT_PRIVATE_KEY }}
241241
owner: bitgo
242242
repositories: |

0 commit comments

Comments
 (0)