Skip to content

Commit 6550721

Browse files
authored
chore: migrate from tibdex/github-app-token to actions/create-github-app-token (#5169)
1 parent 7ae71d7 commit 6550721

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/prepare-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v6
14-
- uses: tibdex/github-app-token@v2
14+
- uses: actions/create-github-app-token@v3
1515
id: generate-token
1616
with:
17-
app_id: ${{ secrets.APP_ID }}
18-
private_key: ${{ secrets.APP_PRIVATE_KEY }}
17+
client-id: ${{ secrets.APP_ID }}
18+
private-key: ${{ secrets.APP_PRIVATE_KEY }}
1919
- name: Set up Python 3.10
2020
uses: actions/setup-python@v6
2121
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v6
14-
- uses: tibdex/github-app-token@v2
14+
- uses: actions/create-github-app-token@v3
1515
id: generate-token
1616
with:
17-
app_id: ${{ secrets.APP_ID }}
18-
private_key: ${{ secrets.APP_PRIVATE_KEY }}
17+
client-id: ${{ secrets.APP_ID }}
18+
private-key: ${{ secrets.APP_PRIVATE_KEY }}
1919
- name: Set up Python 3.10
2020
uses: actions/setup-python@v6
2121
with:

0 commit comments

Comments
 (0)