From 004c0e9144f10a3f79753a644f63e7d5b8912138 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 09:03:39 +0000 Subject: [PATCH] Update actions/create-github-app-token action to v3 --- .github/workflows/issue-automation.yml | 4 ++-- .github/workflows/release-automation.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issue-automation.yml b/.github/workflows/issue-automation.yml index 800e7248e..b4a330eda 100644 --- a/.github/workflows/issue-automation.yml +++ b/.github/workflows/issue-automation.yml @@ -38,7 +38,7 @@ jobs: # survive the narrowing. - name: Generate App token (narrow) if: github.event.action == 'opened' || github.event.action == 'reopened' - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 id: token-narrow with: app-id: ${{ secrets.ILM_PROJECT_BOT_APP_ID }} @@ -51,7 +51,7 @@ jobs: # a different repo than the child). - name: Generate App token (broad, for version-propagation) if: github.event.action == 'opened' - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 id: token-broad with: app-id: ${{ secrets.ILM_PROJECT_BOT_APP_ID }} diff --git a/.github/workflows/release-automation.yml b/.github/workflows/release-automation.yml index e21889ca1..b8acc0293 100644 --- a/.github/workflows/release-automation.yml +++ b/.github/workflows/release-automation.yml @@ -24,7 +24,7 @@ jobs: timeout-minutes: 5 steps: - name: Generate App token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 id: app-token with: app-id: ${{ secrets.ILM_PROJECT_BOT_APP_ID }}