Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ require (
github.com/olivere/elastic/v7 v7.0.32 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
github.com/opencontainers/runc v1.2.8 // indirect
github.com/opencontainers/runc v1.3.6 // indirect

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 [blocker] Commit the missing go.sum entries

Updating the required runc version without updating go.sum leaves the module files untidy: go.sum still only contains checksums for github.com/opencontainers/runc v1.2.8. In this repo the Dirty CI job runs just pre-commit, which includes go mod tidy, then fails if git status has changes, so this PR will be blocked once tidy adds the v1.3.6 checksums. Please run go mod tidy/go mod download and commit the resulting go.sum changes.

github.com/ory/dockertest/v3 v3.12.0 // indirect
github.com/paulmach/orb v0.12.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
Expand Down
Loading