Project

General

Profile

Actions

Updating dependencies

Go

(see also: real documentation)

Update a single dependency:

~/arvados$ go get github.com/docker/docker@latest

Update all dependencies:

~/arvados$ go get -u -t ./...

Then sync:

~/arvados$ go mod tidy

This is a good time to review "replace" directives in source:go.mod and find better solutions to issues that are currently handled by pinning modules to old versions or unmaintained forks.

Updated by Tom Clegg 22 days ago · 3 revisions