You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go modules should update automatically on a weekly basis through CI.
Current Behavior
Presently, the (Update Go Modules job is consistently failing)[https://github.com/paketo-buildpacks/apache-tomee/actions/runs/3672158285].
Possible Solution
I have tried to unwind the issue here with the Go module dependencies but there is an issue with a test dependency that I cannot work out.
> go get -u all
go: all: module github.com/docker/docker@upgrade found (v20.10.21+incompatible), but does not contain package github.com/docker/docker/builder/remotecontext/urlutil
I also tried go clean -modcache which is often suggested online as a fix for issues like this and it didn't help.
Steps to Reproduce
Repeat the steps from the failing action locally, which basically amounts to running go get -u all in the project directory.
Motivations
Until this is resolved, transitive go modules are not being updated. Dependabot will update direct dependencies, but it does not keep transitive dependencies up-to-date.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Go modules should update automatically on a weekly basis through CI.
Current Behavior
Presently, the (Update Go Modules job is consistently failing)[https://github.com/paketo-buildpacks/apache-tomee/actions/runs/3672158285].
Possible Solution
I have tried to unwind the issue here with the Go module dependencies but there is an issue with a test dependency that I cannot work out.
I also tried
go clean -modcache
which is often suggested online as a fix for issues like this and it didn't help.Steps to Reproduce
Repeat the steps from the failing action locally, which basically amounts to running
go get -u all
in the project directory.Motivations
Until this is resolved, transitive go modules are not being updated. Dependabot will update direct dependencies, but it does not keep transitive dependencies up-to-date.
The text was updated successfully, but these errors were encountered: