release: CI hardening + Celery memory optimisation (0.1.23)#54
Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The prefork pool forks a child process that loads the full Django app (~100 MB RSS). For the single-node manager, concurrency is effectively 1 either way, so --pool=solo runs tasks in the worker process itself with identical execution behaviour and no extra process. Measured on a live hub: celery worker(196MB master)+pool-child(101MB)+ beat(63MB). Solo drops the pool child. Beat kept as a separate program (not embedded via -B) so a worker restart can't miss a scheduled tick. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
GitHub is dropping Node.js 20 support on June 16, 2026. Update all affected actions before the deadline to avoid workflow breakage. ci-docker.yml: - actions/checkout v4 → v5 - docker/setup-buildx-action v3 → v4 - docker/login-action v3 → v4 - docker/build-push-action v5 → v6 - replace unmaintained nick-invision/retry@v2 with inline bash retry loop ci-unittest.yml: - actions/checkout v4 → v5 - actions/setup-python v5 → v6 - actions/upload-artifact v4 → v7 - actions/download-artifact v4 → v8 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
chore: add Dependabot version updates for pip and GitHub Actions
perf(celery): run worker with --pool=solo to cut ~100 MB RSS
chore(ci): upgrade GitHub Actions to Node.js 24-compatible versions
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.
Merges develop → master, shipping three independent improvements.
What ships
chore/add-dependabot): weekly automated PRs for pip deps and GitHub Actions versions--pool=solo(perf/celery-solo-pool): removes the prefork child process, saving ~100 MB RSS on production (t2.micro measured: 460 MB → ~360 MB). Concurrency is effectively 1 either way for this single-node manager — pure memory win, no behaviour change.chore/actions-node24-upgrade): bumps all workflow actions before the June 16, 2026 forced-migration deadline. Replaces unmaintainednick-invision/retry@v2with inline bash retry loop.After merge
Trigger
ci-pypito bump to 0.1.23 and publish to PyPI, thenci-dockerto build images.🤖 Generated with Claude Code