os
os copied to clipboard
falcoctl/0.10.0-r1: cve remediation
falcoctl/0.10.0-r1: fix GHSA-4f8r-qqr9-fq8j
Advisory data: https://github.com/wolfi-dev/advisories/blob/main/falcoctl.advisories.yaml
Open AI suggestions to solve the build error:
The error in the log indicates a problem with the Go module versioning:
- The module `github.com/theupdateframework/go-tuf` is being imported with an incorrect path. The correct path should include `/v2` for version 2.
- To resolve this, update your import paths in the code to `github.com/theupdateframework/go-tuf/v2`.
- Modify your `go.mod` file to use the correct module path: `require github.com/theupdateframework/go-tuf/v2 v2.0.1`.
- Finally, run the command `go get github.com/theupdateframework/go-tuf/[email protected]` to update the dependency correctly.
After some debugging, looks like this is going to require changes from upstream to work with the new version of go-tuf. Creating an advisory instead: https://github.com/wolfi-dev/advisories/pull/8775