Skip to content

Commit ad7016f

Browse files
authored
chore: update GitHub app token action to v2 in workflows (#314)
2 parents b770429 + 362b87a commit ad7016f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cla.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: 'Create GitHub app token'
15-
uses: actions/create-github-app-token@v1
15+
uses: actions/create-github-app-token@v2
1616
id: app-token
1717
with:
1818
app-id: ${{ secrets.APP_ID }}
1919
private-key: ${{ secrets.PRIVATE_KEY }}
20-
repositories: "public-ui.github.io,.github-private"
20+
repositories: 'public-ui.github.io,.github-private'
2121

2222
- name: 'CLA Assistant'
2323
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
packages: write
1414
steps:
15-
- uses: actions/create-github-app-token@v1
15+
- uses: actions/create-github-app-token@v2
1616
id: app-token
1717
with:
1818
app-id: ${{ secrets.APP_ID }}

0 commit comments

Comments
 (0)