Skip to content

Commit cb70105

Browse files
build(deps): bump actions/create-github-app-token in /.github/workflows
Bumps [actions/create-github-app-token](https://github.com/actions/create-github-app-token) from 2 to 3. - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v2...v3) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1560aae commit cb70105

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ jobs:
387387
- name: Generate GitHub App Token
388388
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
389389
id: generate-token
390-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
390+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
391391
with:
392392
app-id: ${{ secrets.DECO_WORKFLOW_TRIGGER_APP_ID }}
393393
private-key: ${{ secrets.DECO_WORKFLOW_TRIGGER_PRIVATE_KEY }}
@@ -399,7 +399,7 @@ jobs:
399399
(github.event_name == 'merge_group') ||
400400
(github.event_name == 'pull_request' && !contains(fromJSON(needs.testmask.outputs.targets), 'test'))
401401
id: generate-check-token
402-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
402+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
403403
with:
404404
app-id: ${{ secrets.DECO_TEST_APPROVAL_APP_ID }}
405405
private-key: ${{ secrets.DECO_TEST_APPROVAL_PRIVATE_KEY }}

.github/workflows/start-integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Generate GitHub App Token for Workflow Trigger
2020
id: generate-token
21-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
21+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
2222
with:
2323
app-id: ${{ secrets.DECO_WORKFLOW_TRIGGER_APP_ID }}
2424
private-key: ${{ secrets.DECO_WORKFLOW_TRIGGER_PRIVATE_KEY }}
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Generate GitHub App Token for Check Updates
2929
id: generate-check-token
30-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
30+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
3131
with:
3232
app-id: ${{ secrets.DECO_TEST_APPROVAL_APP_ID }}
3333
private-key: ${{ secrets.DECO_TEST_APPROVAL_PRIVATE_KEY }}

.github/workflows/tagging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- name: Generate GitHub App Token
3636
id: generate-token
37-
uses: actions/create-github-app-token@v2
37+
uses: actions/create-github-app-token@v3
3838
with:
3939
app-id: ${{ secrets.DECO_SDK_TAGGING_APP_ID }}
4040
private-key: ${{ secrets.DECO_SDK_TAGGING_PRIVATE_KEY }}

0 commit comments

Comments
 (0)