Skip to content

Commit ff204d0

Browse files
authored
Merge pull request #21 from gitgitgadget/dependabot/github_actions/actions/create-github-app-token-3
build(deps): bump actions/create-github-app-token from 2 to 3
2 parents d3c0512 + d6b33bc commit ff204d0

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/handle-new-mails.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/create-github-app-token@v2
15+
- uses: actions/create-github-app-token@v3
1616
id: gitgitgadget-git-token
1717
with:
1818
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}
1919
private-key: ${{ secrets.GITGITGADGET_GITHUB_APP_PRIVATE_KEY }}
2020
owner: gitgitgadget
2121
repositories: git
22-
- uses: actions/create-github-app-token@v2
22+
- uses: actions/create-github-app-token@v3
2323
id: git-git-token
2424
with:
2525
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
2626
private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
2727
owner: git
2828
repositories: git
29-
- uses: actions/create-github-app-token@v2
29+
- uses: actions/create-github-app-token@v3
3030
id: dscho-git-token
3131
with:
3232
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}

.github/workflows/handle-pr-comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/create-github-app-token@v2
24+
- uses: actions/create-github-app-token@v3
2525
id: gitgitgadget-git-token
2626
with:
2727
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}
2828
private-key: ${{ secrets.GITGITGADGET_GITHUB_APP_PRIVATE_KEY }}
2929
owner: gitgitgadget
3030
repositories: git
31-
- uses: actions/create-github-app-token@v2
31+
- uses: actions/create-github-app-token@v3
3232
id: git-git-token
3333
with:
3434
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
3535
private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
3636
owner: git
3737
repositories: git
38-
- uses: actions/create-github-app-token@v2
38+
- uses: actions/create-github-app-token@v3
3939
id: dscho-git-token
4040
with:
4141
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}

.github/workflows/handle-pr-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/create-github-app-token@v2
24+
- uses: actions/create-github-app-token@v3
2525
id: gitgitgadget-git-token
2626
with:
2727
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}
2828
private-key: ${{ secrets.GITGITGADGET_GITHUB_APP_PRIVATE_KEY }}
2929
owner: gitgitgadget
3030
repositories: git
31-
- uses: actions/create-github-app-token@v2
31+
- uses: actions/create-github-app-token@v3
3232
id: git-git-token
3333
with:
3434
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
3535
private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
3636
owner: git
3737
repositories: git
38-
- uses: actions/create-github-app-token@v2
38+
- uses: actions/create-github-app-token@v3
3939
id: dscho-git-token
4040
with:
4141
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}

.github/workflows/sync-mailing-list-mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
git fetch "$SOURCE_REPOSITORY" refs/heads/master:refs/heads/lore-$LORE_EPOCH
4444
- name: obtain installation token
4545
if: steps.needs-update.outputs.result == 'true'
46-
uses: actions/create-github-app-token@v2
46+
uses: actions/create-github-app-token@v3
4747
id: token
4848
with:
4949
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}

.github/workflows/sync-ref.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
core.setOutput('target-sha', targetSHA || '')
6565
- name: obtain installation token
6666
if: steps.check.outputs.skip == 'false'
67-
uses: actions/create-github-app-token@v2
67+
uses: actions/create-github-app-token@v3
6868
id: token
6969
with:
7070
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}

.github/workflows/sync-upstream-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
core.setOutput('to-fetch', [...toFetch].join(' '))
123123
- name: obtain installation token
124124
if: steps.check.outputs.refspec != ''
125-
uses: actions/create-github-app-token@v2
125+
uses: actions/create-github-app-token@v3
126126
id: token
127127
with:
128128
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}

.github/workflows/update-mail-to-commit-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/create-github-app-token@v2
16+
- uses: actions/create-github-app-token@v3
1717
id: gitgitgadget-git-token
1818
with:
1919
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}

.github/workflows/update-prs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/create-github-app-token@v2
15+
- uses: actions/create-github-app-token@v3
1616
id: gitgitgadget-git-token
1717
with:
1818
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}
1919
private-key: ${{ secrets.GITGITGADGET_GITHUB_APP_PRIVATE_KEY }}
2020
owner: gitgitgadget
2121
repositories: git
22-
- uses: actions/create-github-app-token@v2
22+
- uses: actions/create-github-app-token@v3
2323
id: git-git-token
2424
with:
2525
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
2626
private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
2727
owner: git
2828
repositories: git
29-
- uses: actions/create-github-app-token@v2
29+
- uses: actions/create-github-app-token@v3
3030
id: dscho-git-token
3131
with:
3232
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}

0 commit comments

Comments
 (0)