From dd91ec65a3f8e250adc4da5c0bbaeb87d772cccd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 17:39:01 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/create-github-app-token from 2 to 3 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/monthly_optimization_planner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/monthly_optimization_planner.yml b/.github/workflows/monthly_optimization_planner.yml index f455b95..f80300e 100644 --- a/.github/workflows/monthly_optimization_planner.yml +++ b/.github/workflows/monthly_optimization_planner.yml @@ -43,7 +43,7 @@ jobs: - name: Create GitHub App token for cross-repo access id: cross_repo_app_token if: steps.cross_repo_credentials.outputs.has_app_credentials == 'true' - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 with: app-id: ${{ vars.CROSS_REPO_GITHUB_APP_ID }} private-key: ${{ secrets.CROSS_REPO_GITHUB_APP_PRIVATE_KEY }} From 43fb12b9b5923c2aacb70c5f7f27d00bdf943254 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sun, 12 Apr 2026 02:30:20 +0800 Subject: [PATCH 2/2] test: expect GitHub App token action v3 --- tests/test_monthly_optimization_planner_workflow_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_monthly_optimization_planner_workflow_config.py b/tests/test_monthly_optimization_planner_workflow_config.py index 8a0ce2e..b6c33e3 100644 --- a/tests/test_monthly_optimization_planner_workflow_config.py +++ b/tests/test_monthly_optimization_planner_workflow_config.py @@ -22,7 +22,7 @@ def test_planner_workflow_downloads_artifacts_posts_issue_and_fans_out_tasks(sel self.assertIn("CROSS_REPO_GITHUB_APP_ID", workflow) self.assertIn("Detect GitHub App credentials", workflow) self.assertIn("has_app_credentials", workflow) - self.assertIn("actions/create-github-app-token@v2", workflow) + self.assertIn("actions/create-github-app-token@v3", workflow) self.assertIn("Resolve cross-repo access token", workflow) self.assertIn("source=github_app", workflow) self.assertIn("source=personal_access_token", workflow)