Add a cron job that deletes all GitHub Actions caches on the 1st and 15th of each month. This ensures the Docker images are rebuilt periodically with newer compiler snapshots (gcc-snapshot, clang-snapshot).
The workflow:
- Runs on the 1st and 15th of each month at 00:00 UTC
- Can be triggered manually via
workflow_dispatch - Deletes all caches using
gh cache delete
Fixes #1691