fix: remediate openssl CVE-2026-63073 / CVE-2026-75803 in container image - #136
Merged
Merged
Conversation
Pin openssl>=3.5.8-r0 in the runtime apk install step to fix CVE-2026-63073 and CVE-2026-75803 (openssl 3.5.7-r0 -> 3.5.8-r0) in us-east4-docker.pkg.dev/astral-field-294621/warp-public-images/oz-agent-worker. Co-Authored-By: Oz <oz-agent@warp.dev>
IsaiahWitzke
approved these changes
Sep 4, 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.
Summary
Fixes two CRITICAL openssl CVEs in the published container image by pinning the runtime apk install step to
openssl>=3.5.8-r0.Affected image
us-east4-docker.pkg.dev/astral-field-294621/warp-public-images/oz-agent-workersha256:9999df83c1ff295afcbd5f8c058c45c899e3b20c2a52a13bafce29b3e26210a7latest,v2026-08-28-21-43-14Vulnerabilities
6a9674a91261712141f2b069,6a97a99f702dfddf305395baprojects/astral-field-294621/locations/us-east4/repositories/warp-public-images/packages/oz-agent-workerPackage change
openssl:3.5.7-r0->3.5.8-r0(also upgrades transitivelibssl3/libcrypto3)Fix
alpine:3.22is a rolling tag, so a fresh build isn't guaranteed to pick up apatched
opensslfrom the base layer alone. The Dockerfile's runtimeapk addstep now explicitly constrains
openssl>=3.5.8-r0, so the build fails loudlyif the upstream Alpine 3.22 repo ever regresses below the fixed version instead
of silently shipping the vulnerable version.
Ownership evidence
.github/workflows/build_release.ymlin this repo builds./Dockerfileandpushes to
us-east4-docker.pkg.dev/astral-field-294621/warp-public-images/oz-agent-worker(see the
dockerjob /image-tagsstep), matching the affected image'scanonical URI exactly.
Validation
docker build -t oz-agent-worker-test .— succeeds.apk info -vshowsopenssl-3.5.8-r0,libssl3-3.5.8-r0,libcrypto3-3.5.8-r0.go.mod/go.sum/code untouched, so CI's lint/test/build/helmjobs are unaffected by this change.
(no GCP/Vanta credentials). Repository checks and package/advisory evidence
pass. Vanta confirmation remains asynchronous after this image is rebuilt
and deployed via
Build Release.Rollout
Merge and run the
Build Releaseworkflow (or let the next scheduled buildrun) to publish a new image tag with the fix, then verify the Vanta finding
clears after rescan.
Co-Authored-By: Warp agent@warp.dev