Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/monthly_optimization_planner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_monthly_optimization_planner_workflow_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down