Skip to content

fix(ci): remove dind service causing Docker version mismatch#1382

Merged
rsbh merged 1 commit intomainfrom
fix/ci-docker-version
Feb 16, 2026
Merged

fix(ci): remove dind service causing Docker version mismatch#1382
rsbh merged 1 commit intomainfrom
fix/ci-docker-version

Conversation

@whoAbhishekSah
Copy link
Member

@whoAbhishekSah whoAbhishekSah commented Feb 14, 2026

Summary

Fix smoke and regression test failures caused by Docker API version mismatch.

Problem

The CI was failing with:

docker: Error response from daemon: client version 1.40 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version.

Root Cause

Two issues were identified:

  1. Unnecessary dind service: The Docker-in-Docker service was running Docker daemon v24.0.2 (API 1.44+), but the GitHub Actions runner's Docker client uses an older API (1.40), causing a version mismatch.

  2. Unnecessary authzed/action-spicedb action: This action was not needed because the e2e tests use ory/dockertest Go library to spin up SpiceDB containers directly. The action was likely causing the Docker version mismatch by attempting to use Docker in an incompatible way.

Same changes applied to the regression job.

🤖 Generated with Claude Code

@vercel
Copy link

vercel bot commented Feb 14, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
frontier Ready Ready Preview, Comment Feb 14, 2026 5:01am

@coderabbitai
Copy link

coderabbitai bot commented Feb 14, 2026

📝 Walkthrough

Walkthrough

Removed Docker-in-Docker (dind) service definitions from the smoke and regression jobs in the GitHub Actions workflow and removed the smoke job step that installed the spicedb binary; no other workflow logic or steps were changed.

Changes

Cohort / File(s) Summary
Workflow Configuration
.github/workflows/test.yml
Deleted Docker-in-Docker (dind) service blocks from smoke and regression jobs (image and ports: 2375), and removed the spicedb installation step from the smoke job.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

🚥 Pre-merge checks | ✅ 4
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change: removing the dind service that caused Docker version mismatch in CI.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Merge Conflict Detection ✅ Passed ✅ No merge conflicts detected when merging into main
Description check ✅ Passed The PR description addresses all key template sections with clear explanations of the problem, root cause, and solution, though Technical Details and Test Plan sections are missing.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix/ci-docker-version

Comment @coderabbitai help to get the list of available commands and usage tips.

The CI was failing with Docker API version mismatch:
"client version 1.40 is too old. Minimum supported API version is 1.44"

Changes:
- Remove dind service from smoke and regression jobs (unnecessary,
  ubuntu-latest has Docker pre-installed)
- Remove authzed/action-spicedb step (the e2e tests use ory/dockertest
  to spin up SpiceDB containers directly, the action was not needed)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@coveralls
Copy link

coveralls commented Feb 14, 2026

Pull Request Test Coverage Report for Build 22011575967

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 38.24%

Totals Coverage Status
Change from base Build 21744973149: 0.0%
Covered Lines: 16107
Relevant Lines: 42121

💛 - Coveralls

@rsbh rsbh merged commit 3f5ab2f into main Feb 16, 2026
8 checks passed
@rsbh rsbh deleted the fix/ci-docker-version branch February 16, 2026 05:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants