ci: fix Node 24 setup-python crash across 11 workflows - #45
Merged
Conversation
GitHub's default runners moved to Node 24, where `actions/setup-python@v5` with `cache: pip` crashes at setup with `Error: Maximum call stack size exceeded`. This was breaking deploy-pages, verify-status, coverage-report, the weekly jobs, and the techapi-* comment workflows. Apply the same fix already used by test.yml: bump `actions/setup-python` to `@v6` and remove `cache: pip` (bump alone does not fix the crash — removing the cache does). Also drop the now-orphaned `cache-dependency-path` in techapi-pr-validation-comment.yml. Fixes #44
Seungpyo1007
added a commit
that referenced
this pull request
Jul 16, 2026
deploy-pages regenerates the full static dump (`python -m app.dump`) and uploads it to GitHub Pages. Since the game category grew to ~962k records, the artifact holds ~1M per-record files and the deploy step times out at `Current status: syncing_files` / `Error: Timeout reached, aborting!`. Mirror the TechAPI homepage workflow: after assembling `_site`, drop `_site/v1/games` and remove `games` from `_site/v1/index.json`. Games stay available as versioned data in the TechAPI repo; every other collection is still published. This keeps the deploy within the Pages sync window. (Latent since the ~1M import on 2026-07-12; only surfaced now that the setup-python crash in #45 was fixed and the deploy step actually runs.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
GitHub moved default runners to Node 24.
actions/setup-python@v5withcache: pipcrashes at setup:This has been failing
deploy-pages,verify-status,coverage-report,dump-refresh,refresh-data,weekly-ingest,weekly-refresh,verify-network, and bothtechapi-*-commentworkflows on every run.Fix
Apply the same fix
test.ymlalready uses: bumpactions/setup-python→@v6and removecache: pip. (The@v6bump alone does not stop the crash — removing the cache does; the bump additionally clears the Node 20 deprecation warning.)cache: pip, bump@v5→@v6validate-data.yml:@v5→@v6(had no cache; bumped for consistency)techapi-pr-validation-comment.yml: also removed the now-orphanedcache-dependency-path+ its commentNo behavior change beyond CI setup; pip installs still work (just uncached).
Fixes #44