-
Notifications
You must be signed in to change notification settings - Fork 387
Fix: OSV scanner docker/docker CVE #3954
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
835e7fe
fix: osv-scanner found CVE in test dependency go-testcontainers depen…
szuecs 599bc1d
fix: test build error caused by moby/testcontainer update
szuecs 593f855
refactor: remove outdated github.com/cenkalti/backoff
szuecs a13948c
refator/fix: backoff v5 usage
szuecs 82216fc
fix: eopa dependency
szuecs 9ad6d67
fix: semgrep findings
szuecs 4cb3e56
cleanup
szuecs 0389f82
tidy
szuecs d36e9f2
fix: endpoint parsing should not fail by invalid port to run this test
szuecs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ require ( | |
| github.com/andybalholm/brotli v1.2.1 | ||
| github.com/aryszka/jobqueue v0.0.3 | ||
| github.com/bombsimon/logrusr/v4 v4.1.0 | ||
| github.com/cenkalti/backoff v2.2.1+incompatible | ||
| github.com/cenkalti/backoff/v5 v5.0.3 | ||
| github.com/cespare/xxhash/v2 v2.3.0 | ||
| github.com/cjoudrey/gluahttp v0.0.0-20201111170219-25003d9adfa9 | ||
| github.com/cjoudrey/gluaurl v0.0.0-20161028222611-31cbb9bef199 | ||
|
|
@@ -29,7 +29,7 @@ require ( | |
| github.com/lightstep/lightstep-tracer-go v0.26.0 | ||
| github.com/miekg/dns v1.1.72 | ||
| github.com/oklog/ulid v1.3.1 | ||
| github.com/open-policy-agent/eopa v1.46.0 | ||
| github.com/open-policy-agent/eopa v1.46.1-0.20260410145035-769c001a4008 | ||
| github.com/open-policy-agent/opa v1.14.1 | ||
| github.com/open-policy-agent/opa-envoy-plugin v1.14.1-envoy | ||
| github.com/opentracing/basictracer-go v1.1.0 | ||
|
|
@@ -44,7 +44,7 @@ require ( | |
| github.com/sony/gobreaker v1.0.0 | ||
| github.com/stretchr/testify v1.11.1 | ||
| github.com/szuecs/rate-limit-buffer v0.9.0 | ||
| github.com/testcontainers/testcontainers-go v0.41.0 | ||
| github.com/testcontainers/testcontainers-go v0.41.1-0.20260403163240-359d0dec648b | ||
| github.com/tidwall/gjson v1.18.0 | ||
| github.com/tsenart/vegeta v12.7.0+incompatible | ||
| github.com/uber/jaeger-client-go v2.30.0+incompatible | ||
|
|
@@ -127,7 +127,6 @@ require ( | |
| github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b // indirect | ||
| github.com/bytecodealliance/wasmtime-go/v39 v39.0.1 // indirect | ||
| github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
| github.com/cenkalti/backoff/v5 v5.0.3 // indirect | ||
| github.com/clipperhouse/stringish v0.1.1 // indirect | ||
| github.com/clipperhouse/uax29/v2 v2.3.0 // indirect | ||
| github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect | ||
|
|
@@ -146,7 +145,6 @@ require ( | |
| github.com/dgraph-io/ristretto/v2 v2.3.0 // indirect | ||
| github.com/dgryski/go-gk v0.0.0-20200319235926-a69029f61654 // indirect | ||
| github.com/distribution/reference v0.6.0 // indirect | ||
| github.com/docker/docker v28.5.2+incompatible // indirect | ||
| github.com/docker/go-units v0.5.0 // indirect | ||
| github.com/dustin/go-humanize v1.0.1 // indirect | ||
| github.com/ebitengine/purego v0.10.0 // indirect | ||
|
|
@@ -218,12 +216,13 @@ require ( | |
| github.com/moby/docker-image-spec v1.3.1 // indirect | ||
| github.com/moby/go-archive v0.2.0 // indirect | ||
| github.com/moby/locker v1.0.1 // indirect | ||
| github.com/moby/patternmatcher v0.6.0 // indirect | ||
| github.com/moby/moby/api v1.54.1 // indirect | ||
| github.com/moby/moby/client v0.4.0 // indirect | ||
| github.com/moby/patternmatcher v0.6.1 // indirect | ||
| github.com/moby/sys/sequential v0.6.0 // indirect | ||
| github.com/moby/sys/user v0.4.0 // indirect | ||
| github.com/moby/sys/userns v0.1.0 // indirect | ||
| github.com/moby/term v0.5.2 // indirect | ||
| github.com/morikuni/aec v1.0.0 // indirect | ||
| github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
| github.com/ncruces/go-strftime v0.1.9 // indirect | ||
| github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249 // indirect | ||
|
|
@@ -255,7 +254,7 @@ require ( | |
| github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect | ||
| github.com/segmentio/asm v1.2.1 // indirect | ||
| github.com/segmentio/ksuid v1.0.4 // indirect | ||
| github.com/shirou/gopsutil/v4 v4.26.2 // indirect | ||
| github.com/shirou/gopsutil/v4 v4.26.3 // indirect | ||
| github.com/spiffe/go-spiffe/v2 v2.6.0 // indirect | ||
| github.com/streadway/quantile v0.0.0-20220407130108-4246515d968d // indirect | ||
| github.com/tchap/go-patricia/v2 v2.3.3 // indirect | ||
|
|
@@ -327,4 +326,4 @@ require ( | |
| oras.land/oras-go/v2 v2.6.0 // indirect | ||
| ) | ||
|
|
||
| go 1.25.8 | ||
| go 1.26.1 | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this create the test failure |
||
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hack to fail differently, because of Go update to 1.26.1