fix(repo): replace addnab/docker-run-action with direct docker run#34448
Merged
FrozenPandaz merged 1 commit intomasterfrom Feb 13, 2026
Merged
fix(repo): replace addnab/docker-run-action with direct docker run#34448FrozenPandaz merged 1 commit intomasterfrom
FrozenPandaz merged 1 commit intomasterfrom
Conversation
Docker Engine 28.x on ubuntu-24.04 runners requires minimum API version 1.44. The addnab/docker-run-action@v3 uses docker:20.10 (API 1.41) which is now rejected by the daemon. Replace with a direct docker run command using the host's modern Docker CLI.
Contributor
|
View your CI Pipeline Execution ↗ for commit b06c011
☁️ Nx Cloud last updated this comment at |
AgentEnder
approved these changes
Feb 13, 2026
✅ Deploy Preview for nx-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for nx-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
FrozenPandaz
added a commit
that referenced
this pull request
Feb 13, 2026
…34448) ## Current Behavior The publish workflow uses `addnab/docker-run-action@v3` which is based on `docker:20.10` (Docker API 1.41). GitHub's `ubuntu-24.04` runners now ship Docker Engine 28.x which requires minimum API version 1.44, causing all 4 Linux Docker builds to fail: ``` docker: Error response from daemon: client version 1.41 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version. ``` Failed run: https://github.com/nrwl/nx/actions/runs/21961139962 ## Expected Behavior Linux Docker builds (x86_64-gnu, x86_64-musl, aarch64-gnu, aarch64-musl) complete successfully using the host's modern Docker CLI. https://github.com/nrwl/nx/actions/runs/21996143819 ## Related Issue(s) The `addnab/docker-run-action` repo is abandoned (last release March 2021, last commit May 2021) with open issues about this exact problem. (cherry picked from commit c5e1bed)
Contributor
|
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Current Behavior
The publish workflow uses
addnab/docker-run-action@v3which is based ondocker:20.10(Docker API 1.41). GitHub'subuntu-24.04runners now ship Docker Engine 28.x which requires minimum API version 1.44, causing all 4 Linux Docker builds to fail:Failed run: https://github.com/nrwl/nx/actions/runs/21961139962
Expected Behavior
Linux Docker builds (x86_64-gnu, x86_64-musl, aarch64-gnu, aarch64-musl) complete successfully using the host's modern Docker CLI.
https://github.com/nrwl/nx/actions/runs/21996143819
Related Issue(s)
The
addnab/docker-run-actionrepo is abandoned (last release March 2021, last commit May 2021) with open issues about this exact problem.