From cb70105cc4ea282f9e0f055734e3146f301e5021 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Mar 2026 11:26:33 +0000 Subject: [PATCH] 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](https://github.com/actions/create-github-app-token/compare/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] --- .github/workflows/push.yml | 4 ++-- .github/workflows/start-integration-tests.yml | 4 ++-- .github/workflows/tagging.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 01cf7b6f67..cf6cf565e7 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -387,7 +387,7 @@ jobs: - name: Generate GitHub App Token if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }} id: generate-token - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 + uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 with: app-id: ${{ secrets.DECO_WORKFLOW_TRIGGER_APP_ID }} private-key: ${{ secrets.DECO_WORKFLOW_TRIGGER_PRIVATE_KEY }} @@ -399,7 +399,7 @@ jobs: (github.event_name == 'merge_group') || (github.event_name == 'pull_request' && !contains(fromJSON(needs.testmask.outputs.targets), 'test')) id: generate-check-token - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 + uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 with: app-id: ${{ secrets.DECO_TEST_APPROVAL_APP_ID }} private-key: ${{ secrets.DECO_TEST_APPROVAL_PRIVATE_KEY }} diff --git a/.github/workflows/start-integration-tests.yml b/.github/workflows/start-integration-tests.yml index 74bfc90e64..22a3991611 100644 --- a/.github/workflows/start-integration-tests.yml +++ b/.github/workflows/start-integration-tests.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Generate GitHub App Token for Workflow Trigger id: generate-token - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 + uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 with: app-id: ${{ secrets.DECO_WORKFLOW_TRIGGER_APP_ID }} private-key: ${{ secrets.DECO_WORKFLOW_TRIGGER_PRIVATE_KEY }} @@ -27,7 +27,7 @@ jobs: - name: Generate GitHub App Token for Check Updates id: generate-check-token - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 + uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0 with: app-id: ${{ secrets.DECO_TEST_APPROVAL_APP_ID }} private-key: ${{ secrets.DECO_TEST_APPROVAL_PRIVATE_KEY }} diff --git a/.github/workflows/tagging.yml b/.github/workflows/tagging.yml index 09750decad..0752107ac9 100644 --- a/.github/workflows/tagging.yml +++ b/.github/workflows/tagging.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Generate GitHub App Token id: generate-token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.DECO_SDK_TAGGING_APP_ID }} private-key: ${{ secrets.DECO_SDK_TAGGING_PRIVATE_KEY }}