From 20c5d69701427197bd393d03b6de226e911a0822 Mon Sep 17 00:00:00 2001 From: Blair Hamilton Date: Thu, 2 Jul 2026 18:21:28 -0400 Subject: [PATCH] ci: bump actions/create-github-app-token v1 -> v2 (Node 24) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v1 targets the deprecated Node 20 runtime — with FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 it's force-run on Node 24 but still emits the deprecation warning on every job. v2 is Node 24-native and input-compatible (same app-id/private-key/owner/ repositories/permission-* inputs). Covers the token mint in docker-release.yml (private-modules) and tag-config.yml. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/docker-release.yml | 2 +- .github/workflows/tag-config.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 54a8771..8e6c7e3 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -101,7 +101,7 @@ jobs: - name: Mint private-module read token id: private-module-token if: ${{ inputs.private-modules }} - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ secrets.BOOTSTRAP_APP_ID }} private-key: ${{ secrets.BOOTSTRAP_APP_PRIVATE_KEY }} diff --git a/.github/workflows/tag-config.yml b/.github/workflows/tag-config.yml index 0baaf40..a3f7e7f 100644 --- a/.github/workflows/tag-config.yml +++ b/.github/workflows/tag-config.yml @@ -141,7 +141,7 @@ jobs: - name: Mint GitHub App token if: steps.changed.outputs.list != '' id: app-token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v2 with: app-id: ${{ secrets.BOOTSTRAP_APP_ID }} private-key: ${{ secrets.BOOTSTRAP_APP_PRIVATE_KEY }}