chore(ci): update supercharge/redis-github-action to v1.8.1#171
Merged
kinyoklion merged 3 commits intoFeb 13, 2026
Conversation
The Docker client bundled with v1.8.0 (API version 1.40) is incompatible with the Docker daemon on ubuntu-24.04 runners which requires minimum API version 1.44. Updating to v1.8.1 resolves this. Co-Authored-By: rlamb@launchdarkly.com <rlamb@launchdarkly.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: rlamb@launchdarkly.com <rlamb@launchdarkly.com>
kinyoklion
reviewed
Feb 12, 2026
| - run: make compile | ||
| shell: bash | ||
| - uses: supercharge/redis-github-action@ea9b21c6ecece47bd99595c532e481390ea0f044 | ||
| - uses: supercharge/redis-github-action@105b02b0ae87d7c6a8bb8debaf94b553a593327b |
Member
There was a problem hiding this comment.
bc274cb7238cd63a45029db04ee48c07a72609fd
Which you included in the PR description, but didn't use.
Contributor
Author
There was a problem hiding this comment.
Good catch — I was using the tag object SHA from git ls-remote instead of the commit SHA. Updated to bc274cb7238cd63a45029db04ee48c07a72609fd.
Co-Authored-By: rlamb@launchdarkly.com <rlamb@launchdarkly.com>
kinyoklion
approved these changes
Feb 13, 2026
keelerm84
approved these changes
Feb 13, 2026
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.
Requirements
Related issues
Fixes the CI failure in PR #170 where all three "Build and Test" matrix jobs fail at the Redis setup step.
Describe the solution you've provided
Updates the pinned SHA for
supercharge/redis-github-actionin.github/actions/ci/action.ymlfrom v1.8.0 (ea9b21c...) to v1.8.1 (bc274cb...).The v1.8.0 Docker container action bundles a Docker client using API version 1.40, which is now incompatible with the Docker daemon on
ubuntu-24.04runners (minimum API version 1.44). This causes the error:Human review checklist
bc274cb7238cd63a45029db04ee48c07a72609fdcorresponds to the v1.8.1 release ofsupercharge/redis-github-actionDescribe alternatives you've considered
Could replace the action entirely with a raw
docker runstep for Redis, but updating to the latest release is the simplest and least disruptive fix.Additional context