[deps] Update redis Docker tag to v8.6.1#14679
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #14679 +/- ##
=======================================
Coverage 32.36% 32.36%
=======================================
Files 3097 3097
Lines 210976 210976
Branches 38232 38233 +1
=======================================
+ Hits 68280 68283 +3
+ Misses 142696 142693 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Updates the Redis Docker image tag from 8.6.0 to 8.6.1 in CI and dev docker-compose configurations.
Changes:
- Bump Redis image tag to
redis:8.6.1in CI compose - Bump Redis image tag to
redis:8.6.1in dev compose
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| scripts/ci/docker-compose.yml | Updates Redis image tag used by CI runners |
| opencti-platform/opencti-dev/docker-compose.yml | Updates Redis image tag used by the dev environment |
| container_name: redis | ||
| profiles: ["backend"] | ||
| image: redis:8.6.0 | ||
| image: redis:8.6.1 |
There was a problem hiding this comment.
Using a mutable Docker tag (even a patch tag) can reduce build reproducibility and can unexpectedly change the image contents if the tag is republished. Consider pinning the image to an immutable digest (e.g., redis:8.6.1@sha256:...) for CI stability and supply-chain hardening.
| image: redis:8.6.1 | |
| image: redis:8.6.1@${REDIS_IMAGE_DIGEST:?Set REDIS_IMAGE_DIGEST to the sha256 digest of redis:8.6.1} |
| opencti-dev-redis: | ||
| container_name: opencti-dev-redis | ||
| image: redis:8.6.0 | ||
| image: redis:8.6.1 |
There was a problem hiding this comment.
For more deterministic local/dev setups (and easier debugging of environment drift), consider pinning the Redis image by digest (e.g., redis:8.6.1@sha256:...) instead of relying only on the tag.
| image: redis:8.6.1 | |
| image: redis:8.6.1@sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
This PR contains the following updates:
8.6.0→8.6.1Configuration
📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Europe/Paris, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.