Code Monkey home page Code Monkey logo

signy's People

Contributors

carolynvs avatar dependabot[bot] avatar jlegrone avatar radu-matei avatar scottbuckel avatar seb-bah avatar trishankatdatadog avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

signy's Issues

Allow multiple targets per trusted collection

Modelling the way container registries work, we should allow multiple tags (targets) to be signed under the same repository (trusted collection), by reusing the configured keys for the collection.

Configurable environment variables for passphrases

[Original comment:](#80 (comment)

As we think more about how consumers will end up using this as a library rather than a CLI, we should think about making the environment variables for setting passphrases to be configurable.

There are two types of consumers for Signy: end-users, who use the CLI, and other tools that are using the Go packages.
I think there should be a way for both types of users to configure the environment variables used for key passphrases (i.e. SIGNY_ROOT_PASSPHRASE), similarly to how the trust directory is configured.

Push verification image to a `cnabio` registry

The in-toto verification image currently used by Signy is linked to the old organization:

cmd.Flags().StringVarP(&verify.verificationImage, "image", "", "docker.pkg.github.com/cnabio/in-toto-container/verification:v1", "container image to run the in-toto verification")

We need to:

  • put the Dockerfile for the verification image in the repository
  • push the image to a well-known registry (ideally, consistent with how other projects in cnabio distribute container images).

Update `Makefile` and GitHub action to stop relying on `GOPATH`

#47 moved the dependency model used by Signy from dep to Go modules, meaning we don't need to build the project in GOPATH anymore.

However, there are a few places in Makefile where we assume the system that is building the project has set a value for the GOPATH environment variable, for example:

signy/Makefile

Line 42 in 21e031d

curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin $(GOLANGCI_VERSION)

Note that there is also a go get in the bootstrap target which (I think?) still needs a valid GOBIN location.
We should update the install and bootstrap targets to stop assuming one, and update the GitHub action so we don't set up all the environment variables:

export GOPATH=$HOME/go && export GOBIN=$(go env GOPATH)/bin && export PATH=$PATH:$GOPATH&& export PATH=$PATH:$GOBIN && mkdir -p $GOBIN

Only allow tagged targets

Continue the modelling of content trust in container registries, we should only tagged targets to be added to a trusted collection.

Split GUN and target filename correctly

For example, port numbers (e.g., localhost:5000/helloworld-bundle:v1) can throw off Signy:

{
  "signed": {
    "_type": "Targets",
    "delegations": {
      "keys": {},
      "roles": []
    },
    "expires": "2023-02-10T18:17:02.946024-05:00",
    "targets": {
      "5000/helloworld-bundle": {
        "hashes": {
          "sha256": "x+kr1R8FnWCxWtRW7fGUZImX1zn2B5mzfgjtr9iKgbU=",
          "sha512": "VgQ/Bcy/5IGpguFN65K5hUPM324iFO3jyDLEfFO5RcVzdSilkHhDIJemRxADrWDSX2AVM8qrjTqZg7BRbxt61g=="
        },
        "length": 501
      },
      "5000/thin-bundle": {
        "hashes": {
          "sha256": "x+kr1R8FnWCxWtRW7fGUZImX1zn2B5mzfgjtr9iKgbU=",
          "sha512": "VgQ/Bcy/5IGpguFN65K5hUPM324iFO3jyDLEfFO5RcVzdSilkHhDIJemRxADrWDSX2AVM8qrjTqZg7BRbxt61g=="
        },
        "length": 501
      }
    },
    "version": 3
  },
  "signatures": [
    {
      "keyid": "8862fb206c8bf700caa44620b76f52084d1c0494565abef9c27517546d55105e",
      "method": "ecdsa",
      "sig": "z+4XjB6gLaU2ozfyb9cjg/xWhMaiN3Wety40UHiwJTZjHwufUK5hALBVW5ZSzJI2iRSA5WIpAblKarXPl0LkLA=="
    }
  ]
}

Add E2E testing

A successful E2E test would be instantiating a trust server (Notary), and initializing a trusted collection, signing an artifact, then publishing to the trusted server.

Switch to Go modules

As potential consumers of packages in this project have already started migrating to Go modules, it only makes sense for this project to do so as well.

Simplify logic in the top level commands

Original comment:

The more I think about this, the more it looks like there is far too much logic here.
Given that this is what eventual consumers of Signy will also have to implement, I would really like for both sign and verify to be more straightforward.
The complexity is not due to changes introduced by this PR (the actual complexity is the same) - this is more of a TODO before we cut 1.0.

Provide options for pushing and pulling from OCI registries

https://github.com/engineerd/signy/blob/d648918f7c6dadf8ddb4a15d71a6db86a323d02b/pkg/cnab/push.go#L18

For example, the function that exposes the cnab-to-oci Push functionality only allows the target reference and bundle file to be passed, as opposed to the wider range of options allowed by cnab-to-oci.

https://github.com/docker/cnab-to-oci/blob/bf0672a3966c7a41fb7ffb524231d79cb5e16f31/remotes/push.go#L36

While not all options might be relevant for the signature, some might be - for example passing a relocation map.

Disallow pushing trust collection to a repository without a tag

ref cnabio/cnab-to-oci#101

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 sign testdata/cnab/bundle.json localhost:5000/test-no-tag 
INFO[0000] Starting to copy image cnab/helloworld:0.1.1 
INFO[0001] Completed image cnab/helloworld:0.1.1 copy   
INFO[0001] Generated relocation map: relocation.ImageRelocationMap{"cnab/helloworld:0.1.1":"localhost:5000/test-no-tag@sha256:a59a4e74d9cc89e4e75dfb2cc7ea5c108e4236ba6231b53081a9e2506d1197b6"} 
INFO[0002] Pushed successfully, with digest "sha256:b4936e42304c184bafc9b06dde9ea1f979129e09a021a8f40abc07f736de9268" 
INFO[0002] Pushed trust data for localhost:5000/test-no-tag: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 

This generates the following targets file - notice the empty key for the target:

{
  "signed": {
    "_type": "Targets",
    "delegations": {
      "keys": {},
      "roles": []
    },
    "expires": "2023-03-12T11:59:53.535554-07:00",
    "targets": {
      "": {
        "hashes": {
          "sha256": "x+kr1R8FnWCxWtRW7fGUZImX1zn2B5mzfgjtr9iKgbU=",
          "sha512": "VgQ/Bcy/5IGpguFN65K5hUPM324iFO3jyDLEfFO5RcVzdSilkHhDIJemRxADrWDSX2AVM8qrjTqZg7BRbxt61g=="
        },
        "length": 501
      }
    },
    "version": 4
  },
  "signatures": [
    {
      "keyid": "afed30445b655dc441c973959a740a4bb7f7154f077a8464ba717ab4d28477b3",
      "method": "ecdsa",
      "sig": "f5hGpvJpGFzZn0/34HrfcZaUGZET+q37x708EwrrQRNK+K0/9TGL2aPv5MIeYCR37Qpch5My+B1NFCA2dzJ9Ng=="
    }
  ]
}

Listing the repository:

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 list localhost:5000/test-no-tag
	c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5

Trying to verify:

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 verify localhost:5000/test-no-tag
INFO[0000] Pulled trust data for localhost:5000/test-no-tag, with role targets - SHA256: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 
INFO[0000] Pulling bundle from registry: localhost:5000/test-no-tag 
Error: cannot pull bundle: failed to resolve bundle manifest "localhost:5000/test-no-tag": object require

The underlying error here is coming from cnab-to-oci, but the decision to disallow pushing without a tag can must also be taken here as well.

Trying to verify using the full SHA256:

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 verify localhost:5000/test-no-tag@sha256:b4936e42304c184bafc9b06dde9ea1f979129e09a021a8f40abc07f736de9268
INFO[0000] Pulled trust data for localhost:5000/test-no-tag@sha256:b4936e42304c184bafc9b06dde9ea1f979129e09a021a8f40abc07f736de9268, with role targets - SHA256: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 
INFO[0000] Pulling bundle from registry: localhost:5000/test-no-tag@sha256:b4936e42304c184bafc9b06dde9ea1f979129e09a021a8f40abc07f736de9268 
INFO[0000] Computed SHA: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 
INFO[0000] The SHA sums are equal: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5

Cannot use a trust server that does not require authentication

When using a local trust server, most of the time it will not require authentication.
But the current implementation always requires credentials for the trust server, resulting in the following error:

cannot sign and publish trust data: cannot make transport: cannot get default credentials: authentication not found for trust server https://localhost:4443

This is coming from the TUF helper function that reads the Docker auth:

https://github.com/engineerd/signy/blob/d648918f7c6dadf8ddb4a15d71a6db86a323d02b/pkg/tuf/helpers.go#L229-L249

Potential linter errors caused by incompatible verions

Note that both build and test targets work fine with Go 1.13, and the linter checks are successful locally.

2020-02-14T17:47:57.8450961Z golangci-lint run --config ./golangci.yml
2020-02-14T17:48:02.2424830Z ##[error]level=warning msg="[runner/megacheck] Can't run megacheck because of compilation errors in packages [github.com/cnabio/signy/pkg/cnab github.com/cnabio/signy/pkg/tuf github.com/cnabio/signy/pkg/trust github.com/cnabio/signy/pkg/docker [github.com/cnabio/signy/pkg/docker.test] github.com/cnabio/signy/pkg/intoto [github.com/cnabio/signy/pkg/intoto.test]]: pkg/cnab/helpers.go:1: /opt/hostedtoolcache/go/1.13.8/x64/src/strings/strings.go:980:20: DecodeRuneInString not declared by package utf8 and 509 more errors: run `golangci-lint run --no-config --disable-all -E typecheck` to see all errors"
2020-02-14T17:48:02.7391273Z level=warning msg="[runner/govet] govet error: asmdecl: analysis skipped due to errors in package"
2020-02-14T17:48:02.7451930Z level=warning msg="[runner/govet] govet error: asmdecl: analysis skipped due to errors in package"
2020-02-14T17:48:02.7452816Z level=warning msg="[runner/govet] govet error: asmdecl: analysis skipped due to errors in package"
2020-02-14T17:48:02.7453263Z level=warning msg="[runner/govet] govet error: asmdecl: analysis skipped due to errors in package"
2020-02-14T17:48:02.7453799Z level=warning msg="[runner/govet] govet error: asmdecl: analysis skipped due to errors in package"
2020-02-14T17:48:02.7454029Z level=warning msg="[runner/govet] govet error: assign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7454624Z level=warning msg="[runner/govet] govet error: assign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7455134Z level=warning msg="[runner/govet] govet error: assign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7455356Z level=warning msg="[runner/govet] govet error: assign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7456151Z level=warning msg="[runner/govet] govet error: assign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7456466Z level=warning msg="[runner/govet] govet error: assign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7457842Z level=warning msg="[runner/govet] govet error: atomicalign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7504470Z level=warning msg="[runner/govet] govet error: atomicalign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7504702Z level=warning msg="[runner/govet] govet error: atomicalign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7505135Z level=warning msg="[runner/govet] govet error: atomicalign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7505365Z level=warning msg="[runner/govet] govet error: atomicalign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7505563Z level=warning msg="[runner/govet] govet error: atomicalign: analysis skipped due to errors in package"
2020-02-14T17:48:02.7505760Z level=warning msg="[runner/govet] govet error: bools: analysis skipped due to errors in package"
2020-02-14T17:48:02.7505942Z level=warning msg="[runner/govet] govet error: bools: analysis skipped due to errors in package"
2020-02-14T17:48:02.7506149Z level=warning msg="[runner/govet] govet error: bools: analysis skipped due to errors in package"
2020-02-14T17:48:02.7506345Z level=warning msg="[runner/govet] govet error: bools: analysis skipped due to errors in package"
2020-02-14T17:48:02.7506537Z level=warning msg="[runner/govet] govet error: bools: analysis skipped due to errors in package"
2020-02-14T17:48:02.7506735Z level=warning msg="[runner/govet] govet error: bools: analysis skipped due to errors in package"
2020-02-14T17:48:02.7506918Z level=warning msg="[runner/govet] govet error: buildtag: analysis skipped due to errors in package"
2020-02-14T17:48:02.7507118Z level=warning msg="[runner/govet] govet error: buildtag: analysis skipped due to errors in package"
2020-02-14T17:48:02.7507319Z level=warning msg="[runner/govet] govet error: buildtag: analysis skipped due to errors in package"
2020-02-14T17:48:02.7507518Z level=warning msg="[runner/govet] govet error: buildtag: analysis skipped due to errors in package"
2020-02-14T17:48:02.7507709Z level=warning msg="[runner/govet] govet error: buildtag: analysis skipped due to errors in package"
2020-02-14T17:48:02.7507906Z level=warning msg="[runner/govet] govet error: buildtag: analysis skipped due to errors in package"
2020-02-14T17:48:02.7508118Z level=warning msg="[runner/govet] govet error: httpresponse: analysis skipped due to errors in package"
2020-02-14T17:48:02.7508332Z level=warning msg="[runner/govet] govet error: httpresponse: analysis skipped due to errors in package"
2020-02-14T17:48:02.7508536Z level=warning msg="[runner/govet] govet error: httpresponse: analysis skipped due to errors in package"
2020-02-14T17:48:02.7508737Z level=warning msg="[runner/govet] govet error: httpresponse: analysis skipped due to errors in package"
2020-02-14T17:48:02.7508923Z level=warning msg="[runner/govet] govet error: httpresponse: analysis skipped due to errors in package"
2020-02-14T17:48:02.7509767Z level=warning msg="[runner/govet] govet error: httpresponse: analysis skipped due to errors in package"
2020-02-14T17:48:02.7510230Z level=warning msg="[runner/govet] govet error: loopclosure: analysis skipped due to errors in package"
2020-02-14T17:48:02.7510450Z level=warning msg="[runner/govet] govet error: loopclosure: analysis skipped due to errors in package"
2020-02-14T17:48:02.7510634Z level=warning msg="[runner/govet] govet error: loopclosure: analysis skipped due to errors in package"
2020-02-14T17:48:02.7510836Z level=warning msg="[runner/govet] govet error: loopclosure: analysis skipped due to errors in package"
2020-02-14T17:48:02.7511034Z level=warning msg="[runner/govet] govet error: loopclosure: analysis skipped due to errors in package"
2020-02-14T17:48:02.7511228Z level=warning msg="[runner/govet] govet error: loopclosure: analysis skipped due to errors in package"
2020-02-14T17:48:02.7511421Z level=warning msg="[runner/govet] govet error: ctrlflow: analysis skipped due to errors in package"
2020-02-14T17:48:02.7511608Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7511974Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7512181Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7512444Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@reflect"
2020-02-14T17:48:02.7512664Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary, ctrlflow@strconv"
2020-02-14T17:48:02.7512854Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@reflect"
2020-02-14T17:48:02.7513065Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@internal/fmtsort, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7513275Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7513854Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@fmt, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7514082Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7514306Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@regexp/syntax, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7514533Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7514956Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7515168Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@path, ctrlflow@strings"
2020-02-14T17:48:02.7515378Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7515594Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@net/url, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7515804Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7516016Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, ctrlflow@strconv"
2020-02-14T17:48:02.7516213Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@compress/flate, ctrlflow@encoding/binary, ctrlflow@fmt"
2020-02-14T17:48:02.7516425Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary"
2020-02-14T17:48:02.7516637Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/cipher, ctrlflow@encoding/binary, ctrlflow@strconv"
2020-02-14T17:48:02.7516860Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/binary, ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7517082Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@crypto/aes, ctrlflow@crypto/cipher, ctrlflow@encoding/binary, ctrlflow@math/big"
2020-02-14T17:48:02.7517288Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv"
2020-02-14T17:48:02.7517481Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/cipher, ctrlflow@encoding/binary, ctrlflow@strconv"
2020-02-14T17:48:02.7517812Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@math/big"
2020-02-14T17:48:02.7518019Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@encoding/binary"
2020-02-14T17:48:02.7518296Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@math/big, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7518535Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@crypto/aes, ctrlflow@crypto/cipher, ctrlflow@crypto/elliptic, ctrlflow@crypto/sha512, ctrlflow@encoding/asn1, ctrlflow@math/big"
2020-02-14T17:48:02.7518755Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary"
2020-02-14T17:48:02.7519753Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto, ctrlflow@crypto/ed25519/internal/edwards25519, ctrlflow@crypto/rand, ctrlflow@crypto/sha512, ctrlflow@strconv"
2020-02-14T17:48:02.7519985Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@encoding/binary"
2020-02-14T17:48:02.7520190Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv"
2020-02-14T17:48:02.7520434Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto, ctrlflow@crypto/rand, ctrlflow@math/big"
2020-02-14T17:48:02.7521303Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@encoding/binary"
2020-02-14T17:48:02.7521535Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@encoding/binary"
2020-02-14T17:48:02.7522008Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@math/big"
2020-02-14T17:48:02.7522214Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7522435Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/asn1, ctrlflow@encoding/hex, ctrlflow@fmt, ctrlflow@math/big"
2020-02-14T17:48:02.7522655Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@strings"
2020-02-14T17:48:02.7522866Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/asn1, ctrlflow@fmt, ctrlflow@math/big, ctrlflow@reflect"
2020-02-14T17:48:02.7523073Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7523270Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7523549Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto, ctrlflow@crypto/aes, ctrlflow@crypto/cipher, ctrlflow@crypto/des, ctrlflow@crypto/dsa, ctrlflow@crypto/ecdsa, ctrlflow@crypto/ed25519, ctrlflow@crypto/elliptic, ctrlflow@crypto/md5, ctrlflow@crypto/rsa, ctrlflow@crypto/sha1, ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, ctrlflow@crypto/x509/pkix, ctrlflow@encoding/asn1, ctrlflow@encoding/hex, ctrlflow@encoding/pem, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@math/big, ctrlflow@net/url, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/crypto/cryptobyte"
2020-02-14T17:48:02.7523838Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/cipher, ctrlflow@encoding/binary"
2020-02-14T17:48:02.7524032Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary"
2020-02-14T17:48:02.7524652Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary"
2020-02-14T17:48:02.7525099Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/cipher, ctrlflow@encoding/binary, ctrlflow@vendor/golang.org/x/crypto/internal/chacha20, ctrlflow@vendor/golang.org/x/crypto/poly1305, ctrlflow@vendor/golang.org/x/sys/cpu"
2020-02-14T17:48:02.7525456Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto, ctrlflow@crypto/aes, ctrlflow@crypto/cipher, ctrlflow@crypto/des, ctrlflow@crypto/ecdsa, ctrlflow@crypto/ed25519, ctrlflow@crypto/elliptic, ctrlflow@crypto/md5, ctrlflow@crypto/rand, ctrlflow@crypto/rc4, ctrlflow@crypto/rsa, ctrlflow@crypto/sha1, ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, ctrlflow@crypto/x509, ctrlflow@encoding/asn1, ctrlflow@encoding/pem, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@math/big, ctrlflow@strconv, ctrlflow@strings, ctrlflow@vendor/golang.org/x/crypto/chacha20poly1305, ctrlflow@vendor/golang.org/x/crypto/cryptobyte"
2020-02-14T17:48:02.7525737Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7525944Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt"
2020-02-14T17:48:02.7526155Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@log, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7526376Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/text/transform, ctrlflow@vendor/golang.org/x/text/unicode/bidi"
2020-02-14T17:48:02.7526600Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary, ctrlflow@fmt, ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/text/transform"
2020-02-14T17:48:02.7526843Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strings, ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/text/secure/bidirule, ctrlflow@vendor/golang.org/x/text/unicode/bidi, ctrlflow@vendor/golang.org/x/text/unicode/norm"
2020-02-14T17:48:02.7527079Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7527299Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@net/textproto, ctrlflow@strings, ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/net/idna"
2020-02-14T17:48:02.7527523Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@net/url, ctrlflow@strings, ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/net/idna"
2020-02-14T17:48:02.7527731Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt"
2020-02-14T17:48:02.7527948Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@fmt, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7528156Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt"
2020-02-14T17:48:02.7528383Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@crypto/rand, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@mime, ctrlflow@mime/quotedprintable, ctrlflow@net/textproto, ctrlflow@strings"
2020-02-14T17:48:02.7528604Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/tls, ctrlflow@net/textproto, ctrlflow@reflect"
2020-02-14T17:48:02.7528817Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7529188Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@compress/gzip, ctrlflow@crypto/rand, ctrlflow@crypto/tls, ctrlflow@encoding/base64, ctrlflow@encoding/binary, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@log, ctrlflow@mime, ctrlflow@mime/multipart, ctrlflow@net/http/httptrace, ctrlflow@net/http/internal, ctrlflow@net/textproto, ctrlflow@net/url, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8, ctrlflow@vendor/golang.org/x/net/http/httpguts, ctrlflow@vendor/golang.org/x/net/http/httpproxy, ctrlflow@vendor/golang.org/x/net/http2/hpack, ctrlflow@vendor/golang.org/x/net/idna"
2020-02-14T17:48:02.7529589Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, ctrlflow@log, ctrlflow@mime, ctrlflow@net/textproto, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7531064Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/qri-io/jsonpointer, ctrlflow@net/http, ctrlflow@net/mail, ctrlflow@net/url, ctrlflow@reflect, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7531809Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/pkg/errors, [email protected]/qri-io/jsonschema, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7532057Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@fmt, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7532727Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/Masterminds/semver, [email protected]/cnabio/cnab-go/bundle/definition, [email protected]/docker/go/canonical/json, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@strings"
2020-02-14T17:48:02.7532970Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strconv"
2020-02-14T17:48:02.7533197Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@log, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7533418Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7533630Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7533835Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7534063Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes/any, [email protected]/golang/protobuf/ptypes/duration, [email protected]/golang/protobuf/ptypes/timestamp, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7534308Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes/any"
2020-02-14T17:48:02.7534523Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@io/ioutil, ctrlflow@log, ctrlflow@strconv"
2020-02-14T17:48:02.7534733Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/grpclog"
2020-02-14T17:48:02.7534932Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/connectivity"
2020-02-14T17:48:02.7535167Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes, [email protected]/genproto/googleapis/rpc/status, [email protected]/grpc/codes, [email protected]/grpc/internal"
2020-02-14T17:48:02.7535615Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/pkg/errors, [email protected]/grpc/codes, [email protected]/grpc/status, ctrlflow@strings"
2020-02-14T17:48:02.7535845Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@fmt, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7536051Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt"
2020-02-14T17:48:02.7536636Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go"
2020-02-14T17:48:02.7537289Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@io/ioutil"
2020-02-14T17:48:02.7537529Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/binary, ctrlflow@strings"
2020-02-14T17:48:02.7537752Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/x/sys/unix, ctrlflow@log, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7537970Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.7538649Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7539529Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@strings"
2020-02-14T17:48:02.7540484Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@strings"
2020-02-14T17:48:02.7540775Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7540999Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7541589Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/docker-credential-helpers/credentials, ctrlflow@os/exec, ctrlflow@strings"
2020-02-14T17:48:02.7542196Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker-credential-helpers/client, [email protected]/docker/docker-credential-helpers/credentials, ctrlflow@os/exec, ctrlflow@strings"
2020-02-14T17:48:02.7542614Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/cli/cli/config/credentials, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7542849Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@path/filepath"
2020-02-14T17:48:02.7543071Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7543287Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7544530Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, [email protected]/containerd/continuity/pathdriver, [email protected]/docker/docker/pkg/mount, [email protected]/docker/go-units, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/x/sys/unix, ctrlflow@io/ioutil, ctrlflow@os/exec, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7544838Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7545064Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, [email protected]/docker/docker/pkg/system, [email protected]/opencontainers/runc/libcontainer/user, ctrlflow@os/exec, ctrlflow@path/filepath, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7545318Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/pkg/idtools, [email protected]/opencontainers/runc/libcontainer/user, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7545574Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/cli/cli/config/configfile, [email protected]/docker/cli/cli/config/credentials, [email protected]/docker/docker/pkg/homedir, [email protected]/pkg/errors, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7545810Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/pkg/errors"
2020-02-14T17:48:02.7546985Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/opencontainers/go-digest, ctrlflow@net/url, ctrlflow@path, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7547238Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@compress/gzip, ctrlflow@fmt, [email protected]/containerd/containerd/log, ctrlflow@os/exec, ctrlflow@strconv"
2020-02-14T17:48:02.7548702Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/remotes, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7549156Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@net/http, ctrlflow@strings"
2020-02-14T17:48:02.7549383Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strings"
2020-02-14T17:48:02.7550858Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/labels, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/reference, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker/schema1, [email protected]/docker/distribution/registry/api/errcode, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/net/context/ctxhttp, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@path, ctrlflow@strings"
2020-02-14T17:48:02.7551242Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7551458Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt"
2020-02-14T17:48:02.7551652Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json"
2020-02-14T17:48:02.7551865Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7553144Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/api/types/blkiodev, [email protected]/docker/docker/api/types/strslice, [email protected]/docker/go-connections/nat, [email protected]/docker/go-units, ctrlflow@strings"
2020-02-14T17:48:02.7553416Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7553644Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/docker/docker/api/types/versions, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7554389Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/errdefs, [email protected]/docker/distribution/registry/api/errcode, [email protected]/sirupsen/logrus, [email protected]/grpc/codes, [email protected]/grpc/status, ctrlflow@net/http"
2020-02-14T17:48:02.7554651Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/errdefs"
2020-02-14T17:48:02.7555275Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/opencontainers/image-spec/specs-go/v1"
2020-02-14T17:48:02.7555513Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@log, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7555738Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto"
2020-02-14T17:48:02.7555967Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/network, [email protected]/docker/docker/api/types/swarm/runtime"
2020-02-14T17:48:02.7557109Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/network, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/api/types/swarm, [email protected]/docker/go-connections/nat, [email protected]/docker/go-units, ctrlflow@strings"
2020-02-14T17:48:02.7560486Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/csv, ctrlflow@fmt, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/blkiodev, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/swarm, [email protected]/docker/go-connections/nat, [email protected]/docker/go-units, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@math/big, ctrlflow@net/url, ctrlflow@path, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7561381Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/opencontainers/go-digest, ctrlflow@strings"
2020-02-14T17:48:02.7562053Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/distribution/digestset, [email protected]/opencontainers/go-digest, ctrlflow@path, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7562737Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, ctrlflow@mime, ctrlflow@net/http, ctrlflow@strings"
2020-02-14T17:48:02.7563321Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.7564281Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/sha256, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/cnabio/cnab-go/bundle, [email protected]/containerd/containerd/images, [email protected]/docker/distribution, [email protected]/docker/distribution/manifest/schema2, [email protected]/docker/distribution/reference, [email protected]/docker/go/canonical/json, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1"
2020-02-14T17:48:02.7564554Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/docker/api/types, ctrlflow@strings"
2020-02-14T17:48:02.7564790Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@path, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7565521Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/gorilla/mux, [email protected]/opencontainers/go-digest, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7565781Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strings"
2020-02-14T17:48:02.7565998Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@net/http, ctrlflow@regexp, ctrlflow@strconv"
2020-02-14T17:48:02.7566227Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@log, ctrlflow@net/http, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7566615Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7566891Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/prometheus/client_model/go"
2020-02-14T17:48:02.7567113Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7567662Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7567892Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7568173Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/matttproud/golang_protobuf_extensions/pbutil, [email protected]/prometheus/client_model/go, [email protected]/prometheus/common/internal/bitbucket.org/ww/goautoneg, [email protected]/prometheus/common/model, ctrlflow@io/ioutil, ctrlflow@mime, ctrlflow@net/http, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7568423Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@path/filepath"
2020-02-14T17:48:02.7568635Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@io/ioutil, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7568884Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/hex, ctrlflow@fmt, [email protected]/prometheus/procfs/internal/fs, [email protected]/prometheus/procfs/internal/util, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7569368Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strings"
2020-02-14T17:48:02.7569651Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@expvar, ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/prometheus/client_golang/prometheus/internal, [email protected]/prometheus/client_model/go, [email protected]/prometheus/common/expfmt, [email protected]/prometheus/common/model, [email protected]/prometheus/procfs, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@runtime/debug, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7570169Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@compress/gzip, ctrlflow@crypto/tls, ctrlflow@fmt, [email protected]/prometheus/client_golang/prometheus, [email protected]/prometheus/client_model/go, [email protected]/prometheus/common/expfmt, ctrlflow@net/http, ctrlflow@net/http/httptrace, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7571205Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/prometheus/client_golang/prometheus, [email protected]/prometheus/client_golang/prometheus/promhttp, ctrlflow@net/http"
2020-02-14T17:48:02.7571821Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/go-metrics"
2020-02-14T17:48:02.7572411Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/distribution, [email protected]/docker/distribution/metrics, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.7573056Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/distribution, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/storage/cache, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.7574537Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/docker/distribution/registry/api/v2, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/distribution/registry/storage/cache, [email protected]/docker/distribution/registry/storage/cache/memory, [email protected]/opencontainers/go-digest, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7574905Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution/registry/client, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strings"
2020-02-14T17:48:02.7575144Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/x/sys/unix, ctrlflow@strings"
2020-02-14T17:48:02.7575351Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7575984Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/docker/pkg/term, [email protected]/docker/go-units, [email protected]/morikuni/aec, ctrlflow@strings"
2020-02-14T17:48:02.7576223Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/sha256, ctrlflow@encoding/hex, ctrlflow@io/ioutil, ctrlflow@path/filepath"
2020-02-14T17:48:02.7576434Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/rand, ctrlflow@encoding/hex, ctrlflow@fmt, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7576745Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7577009Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@os/user, ctrlflow@path, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7577292Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, ctrlflow@bytes, ctrlflow@compress/gzip, ctrlflow@crypto, ctrlflow@crypto/sha256, ctrlflow@encoding/hex, ctrlflow@fmt, ctrlflow@path, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7577523Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/sirupsen/logrus, ctrlflow@net/http"
2020-02-14T17:48:02.7577729Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strconv"
2020-02-14T17:48:02.7577929Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/x/net/internal/socks, ctrlflow@net/url, ctrlflow@strings"
2020-02-14T17:48:02.7578151Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/tls, ctrlflow@fmt, [email protected]/x/net/proxy, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strings"
2020-02-14T17:48:02.7578376Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/tls, ctrlflow@crypto/x509, ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/pkg/errors, ctrlflow@io/ioutil"
2020-02-14T17:48:02.7578736Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7580509Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, ctrlflow@crypto/tls, ctrlflow@encoding/hex, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/errdefs, [email protected]/docker/docker/pkg/ioutils, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/pkg/stringid, [email protected]/docker/docker/pkg/tarsum, [email protected]/docker/docker/registry/resumable, [email protected]/docker/go-connections/sockets, [email protected]/docker/go-connections/tlsconfig, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/http/cookiejar, ctrlflow@net/url, ctrlflow@path/filepath, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7582533Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto/tls, ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/cnabio/cnab-go/bundle, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker, [email protected]/docker/cli/cli/config, [email protected]/docker/cli/cli/config/configfile, [email protected]/docker/cli/cli/config/credentials, [email protected]/docker/cli/opts, [email protected]/docker/cnab-to-oci/converter, [email protected]/docker/cnab-to-oci/internal, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/registry, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7582915Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7583133Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/api/types"
2020-02-14T17:48:02.7583378Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@log, ctrlflow@net/http, ctrlflow@net/http/internal, ctrlflow@net/textproto, ctrlflow@net/url, ctrlflow@strings, ctrlflow@vendor/golang.org/x/net/http/httpguts"
2020-02-14T17:48:02.7584972Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@crypto/tls, ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/network, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/api/types/swarm, [email protected]/docker/docker/api/types/time, [email protected]/docker/docker/api/types/versions, [email protected]/docker/docker/api/types/volume, [email protected]/docker/docker/errdefs, [email protected]/docker/go-connections/sockets, [email protected]/docker/go-connections/tlsconfig, [email protected]/opencontainers/go-digest, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/http/httputil, ctrlflow@net/url, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7586052Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/cnabio/cnab-go/bundle, [email protected]/containerd/containerd/remotes, [email protected]/docker/cli/cli/config, [email protected]/docker/cnab-to-oci/remotes, [email protected]/docker/distribution/reference, [email protected]/docker/docker/client, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@strings"
2020-02-14T17:48:02.7730609Z level=warning msg="[runner/govet] govet error: lostcancel: failed prerequisites: [email protected]/cnabio/signy/pkg/cnab"
2020-02-14T17:48:02.7730878Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@crypto/md5"
2020-02-14T17:48:02.7731126Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/rand, ctrlflow@fmt"
2020-02-14T17:48:02.7731345Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/sha512"
2020-02-14T17:48:02.7731618Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto, ctrlflow@crypto/ecdsa, ctrlflow@crypto/rsa, ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, ctrlflow@crypto/x509, ctrlflow@encoding/asn1, ctrlflow@encoding/hex, ctrlflow@fmt, [email protected]/agl/ed25519, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, ctrlflow@io/ioutil, ctrlflow@math/big, ctrlflow@path, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7731914Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution/uuid, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary/tuf/data, ctrlflow@io/ioutil, ctrlflow@path/filepath"
2020-02-14T17:48:02.7732227Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto/aes, ctrlflow@crypto/cipher, ctrlflow@crypto/ecdsa, ctrlflow@crypto/elliptic, ctrlflow@crypto/rand, ctrlflow@crypto/rsa, ctrlflow@crypto/sha1, ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, ctrlflow@crypto/x509, ctrlflow@crypto/x509/pkix, ctrlflow@encoding/asn1, ctrlflow@encoding/hex, ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/agl/ed25519, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/tuf/data, ctrlflow@io/ioutil, ctrlflow@math/big, ctrlflow@strings"
2020-02-14T17:48:02.7732515Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt"
2020-02-14T17:48:02.7732814Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto/sha256, ctrlflow@encoding/json, ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, [email protected]/theupdateframework/notary/tuf/validation, ctrlflow@io/ioutil, ctrlflow@mime/multipart, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7733155Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/storage, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7733782Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@crypto/rand, ctrlflow@crypto/x509, ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils"
2020-02-14T17:48:02.7734238Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto, ctrlflow@crypto/ecdsa, ctrlflow@crypto/rand, ctrlflow@crypto/rsa, ctrlflow@crypto/sha256, ctrlflow@crypto/x509, ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/agl/ed25519, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, ctrlflow@math/big, ctrlflow@strings"
2020-02-14T17:48:02.7734590Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/x509, ctrlflow@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, [email protected]/theupdateframework/notary/tuf/utils, ctrlflow@strings"
2020-02-14T17:48:02.7734933Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, [email protected]/theupdateframework/notary/tuf/utils, ctrlflow@strings"
2020-02-14T17:48:02.7735442Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client/changelist, [email protected]/theupdateframework/notary/cryptoservice, [email protected]/theupdateframework/notary/storage, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, [email protected]/theupdateframework/notary/tuf/utils, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@path/filepath, ctrlflow@regexp"
2020-02-14T17:48:02.7735825Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, [email protected]/x/sys/unix, ctrlflow@strconv, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7736107Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, [email protected]/theupdateframework/notary, [email protected]/x/crypto/ssh/terminal, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7736611Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/sha256, ctrlflow@crypto/tls, ctrlflow@crypto/x509, ctrlflow@encoding/hex, ctrlflow@fmt, [email protected]/cnabio/signy/pkg/cnab, [email protected]/docker/cli/cli/config, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client, [email protected]/theupdateframework/notary/cryptoservice, [email protected]/theupdateframework/notary/passphrase, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@path/filepath"
2020-02-14T17:48:02.7737531Z level=warning msg="[runner/govet] govet error: lostcancel: failed prerequisites: [email protected]/cnabio/signy/pkg/tuf"
2020-02-14T17:48:02.7737826Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@compress/flate, ctrlflow@encoding/binary, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@path, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7738943Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, ctrlflow@archive/zip, ctrlflow@bufio, ctrlflow@bytes, ctrlflow@crypto/sha256, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/docker/errdefs, [email protected]/opencontainers/go-digest, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7739258Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/cli/cli/context/store, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil"
2020-02-14T17:48:02.7739533Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@os/exec, ctrlflow@strings"
2020-02-14T17:48:02.7739802Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/pkg/errors, ctrlflow@net/url"
2020-02-14T17:48:02.7740077Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/cli/cli/connhelper/commandconn, [email protected]/docker/cli/cli/connhelper/ssh, [email protected]/pkg/errors, ctrlflow@net/url"
2020-02-14T17:48:02.7741028Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/tls, ctrlflow@crypto/x509, ctrlflow@encoding/pem, ctrlflow@fmt, [email protected]/docker/cli/cli/connhelper, [email protected]/docker/cli/cli/context, [email protected]/docker/cli/cli/context/store, [email protected]/docker/docker/client, [email protected]/docker/go-connections/tlsconfig, [email protected]/pkg/errors, ctrlflow@net/http"
2020-02-14T17:48:02.7741350Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.7741820Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7742145Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@encoding/csv, ctrlflow@encoding/hex, ctrlflow@flag, ctrlflow@fmt, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7742952Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/cli/cli/config, [email protected]/docker/cli/opts, [email protected]/docker/go-connections/tlsconfig, [email protected]/sirupsen/logrus, [email protected]/spf13/pflag, ctrlflow@path/filepath"
2020-02-14T17:48:02.7743706Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/distribution, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1"
2020-02-14T17:48:02.7744855Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/docker/distribution, [email protected]/docker/distribution/manifest/manifestlist, [email protected]/docker/distribution/manifest/schema2, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors"
2020-02-14T17:48:02.7746537Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/cli/cli/manifest/types, [email protected]/docker/distribution/manifest/manifestlist, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7748375Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/docker/cli/cli/config, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/registry, [email protected]/docker/go-connections/tlsconfig, [email protected]/opencontainers/go-digest, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client, [email protected]/theupdateframework/notary/passphrase, [email protected]/theupdateframework/notary/storage, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@path, ctrlflow@path/filepath"
2020-02-14T17:48:02.7750129Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/cli/cli/manifest/types, [email protected]/docker/cli/cli/trust, [email protected]/docker/distribution, [email protected]/docker/distribution/manifest/manifestlist, [email protected]/docker/distribution/manifest/schema2, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/docker/distribution/registry/api/v2, [email protected]/docker/distribution/registry/client, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/registry, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@net/http, ctrlflow@strings"
2020-02-14T17:48:02.7750584Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/pkg/term, [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.7750861Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/binary, ctrlflow@fmt, [email protected]/gogo/protobuf/proto, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7751077Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@log"
2020-02-14T17:48:02.7751686Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7751980Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7752337Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, ctrlflow@internal/fmtsort, ctrlflow@io/ioutil, ctrlflow@net/url, ctrlflow@path/filepath, ctrlflow@reflect, ctrlflow@strings, ctrlflow@text/template/parse, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7752652Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, ctrlflow@html, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@text/template, ctrlflow@text/template/parse, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7752929Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7753213Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, [email protected]/x/net/internal/timeseries, ctrlflow@html/template, ctrlflow@log, ctrlflow@net/http, ctrlflow@net/url, ctrlflow@strconv, ctrlflow@strings, ctrlflow@text/tabwriter"
2020-02-14T17:48:02.7753512Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/tls, ctrlflow@crypto/x509, ctrlflow@fmt, [email protected]/golang/protobuf/proto, ctrlflow@io/ioutil, ctrlflow@strings"
2020-02-14T17:48:02.7753773Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7753999Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/internal"
2020-02-14T17:48:02.7754284Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/serviceconfig"
2020-02-14T17:48:02.7754575Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/grpc/connectivity, [email protected]/grpc/credentials, [email protected]/grpc/internal, [email protected]/grpc/metadata, [email protected]/grpc/resolver, [email protected]/grpc/serviceconfig, ctrlflow@strings"
2020-02-14T17:48:02.7754868Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/balancer, [email protected]/grpc/connectivity, [email protected]/grpc/grpclog, [email protected]/grpc/resolver"
2020-02-14T17:48:02.7755142Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/balancer, [email protected]/grpc/balancer/base, [email protected]/grpc/grpclog, [email protected]/grpc/resolver"
2020-02-14T17:48:02.7755411Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strings"
2020-02-14T17:48:02.7755684Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/golang/protobuf/proto, [email protected]/grpc/encoding"
2020-02-14T17:48:02.7756391Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/metadata"
2020-02-14T17:48:02.7756716Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes/duration, [email protected]/golang/protobuf/ptypes/timestamp"
2020-02-14T17:48:02.7757024Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@encoding/binary, ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes, [email protected]/grpc/binarylog/grpc_binarylog_v1, [email protected]/grpc/grpclog, [email protected]/grpc/metadata, [email protected]/grpc/status, ctrlflow@io/ioutil, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7757556Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/x/sys/unix, [email protected]/grpc/connectivity, [email protected]/grpc/credentials, [email protected]/grpc/grpclog"
2020-02-14T17:48:02.7757832Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@strings"
2020-02-14T17:48:02.7758086Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7758340Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@log, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7759123Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/x/text/transform, [email protected]/x/text/unicode/bidi, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7759433Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/binary, ctrlflow@fmt, [email protected]/x/text/transform, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7759715Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/x/text/secure/bidirule, [email protected]/x/text/unicode/bidi, [email protected]/x/text/unicode/norm, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7759993Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/x/net/idna, ctrlflow@net/textproto, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7760301Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt"
2020-02-14T17:48:02.7760589Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@compress/gzip, ctrlflow@crypto/rand, ctrlflow@crypto/tls, ctrlflow@encoding/binary, ctrlflow@fmt, [email protected]/x/net/http/httpguts, [email protected]/x/net/http2/hpack, [email protected]/x/net/idna, ctrlflow@io/ioutil, ctrlflow@log, ctrlflow@net/http, ctrlflow@net/http/httptrace, ctrlflow@net/textproto, ctrlflow@net/url, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7760952Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/x/sys/unix, [email protected]/grpc/grpclog"
2020-02-14T17:48:02.7761166Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/credentials"
2020-02-14T17:48:02.7761441Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/metadata"
2020-02-14T17:48:02.7761792Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/x/net/http2, [email protected]/x/net/http2/hpack, [email protected]/genproto/googleapis/rpc/status, [email protected]/grpc/codes, [email protected]/grpc/credentials, [email protected]/grpc/grpclog, [email protected]/grpc/internal, [email protected]/grpc/internal/channelz, [email protected]/grpc/internal/syscall, [email protected]/grpc/metadata, [email protected]/grpc/peer, [email protected]/grpc/stats, [email protected]/grpc/status, ctrlflow@net/http, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7762194Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/grpc/grpclog, ctrlflow@strconv"
2020-02-14T17:48:02.7762583Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/grpc/grpclog, [email protected]/grpc/resolver, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7762937Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/grpc/resolver"
2020-02-14T17:48:02.7763364Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@compress/gzip, ctrlflow@encoding/base64, ctrlflow@encoding/binary, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/x/net/trace, [email protected]/grpc/balancer, [email protected]/grpc/balancer/roundrobin, [email protected]/grpc/codes, [email protected]/grpc/connectivity, [email protected]/grpc/credentials, [email protected]/grpc/encoding, [email protected]/grpc/encoding/proto, [email protected]/grpc/grpclog, [email protected]/grpc/internal, [email protected]/grpc/internal/balancerload, [email protected]/grpc/internal/binarylog, [email protected]/grpc/internal/channelz, [email protected]/grpc/internal/envconfig, [email protected]/grpc/internal/transport, [email protected]/grpc/metadata, [email protected]/grpc/naming, [email protected]/grpc/peer, [email protected]/grpc/resolver, [email protected]/grpc/resolver/dns, [email protected]/grpc/resolver/passthrough, [email protected]/grpc/serviceconfig, [email protected]/grpc/stats, [email protected]/grpc/status, ctrlflow@io/ioutil, ctrlflow@net/http, ctrlflow@net/http/httputil, ctrlflow@net/url, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7764508Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7765386Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7766084Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7766381Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7766671Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/pkg/errors, ctrlflow@path, ctrlflow@reflect"
2020-02-14T17:48:02.7767278Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/typeurl, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7767633Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7768071Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7768421Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/googleapis/google/rpc, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7768722Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7768995Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7769281Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7769557Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7770708Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/api/types, [email protected]/containerd/containerd/api/types/task, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7771027Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7771298Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, [email protected]/x/sys/unix, ctrlflow@path/filepath"
2020-02-14T17:48:02.7771579Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, [email protected]/containerd/continuity/sysx, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7771857Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@os/exec, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7772158Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, [email protected]/containerd/containerd/log, [email protected]/containerd/continuity/fs, [email protected]/containerd/continuity/sysx, [email protected]/opencontainers/runc/libcontainer/system, [email protected]/pkg/errors, [email protected]/x/sys/unix, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7772439Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/pkg/errors"
2020-02-14T17:48:02.7772720Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/fifo, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@net/url, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7773148Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/gogo/protobuf/types"
2020-02-14T17:48:02.7774859Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/api/services/content/v1, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors"
2020-02-14T17:48:02.7775556Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, [email protected]/opencontainers/runc/libcontainer/system, [email protected]/pkg/errors, [email protected]/x/sys/unix, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7776090Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/sys, [email protected]/pkg/errors, [email protected]/x/sys/unix, ctrlflow@io/ioutil, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7777115Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/mount, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@os/exec"
2020-02-14T17:48:02.7777449Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/typeurl, [email protected]/gogo/protobuf/types"
2020-02-14T17:48:02.7778781Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/reference, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@path, ctrlflow@strings"
2020-02-14T17:48:02.7779253Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/base64, ctrlflow@fmt, [email protected]/grpc/metadata"
2020-02-14T17:48:02.7779501Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/api/services/leases/v1, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/leases"
2020-02-14T17:48:02.7779815Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@encoding/binary, ctrlflow@fmt, [email protected]/gogo/protobuf/proto, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, [email protected]/genproto/googleapis/rpc/status, [email protected]/grpc/codes, [email protected]/grpc/status, ctrlflow@path, ctrlflow@strings"
2020-02-14T17:48:02.7780169Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/containerd/ttrpc, [email protected]/pkg/errors, [email protected]/grpc/metadata, ctrlflow@regexp"
2020-02-14T17:48:02.7780584Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/containerd/containerd/mount, ctrlflow@strings"
2020-02-14T17:48:02.7780852Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt"
2020-02-14T17:48:02.7781773Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7783257Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd/containers, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/snapshots, [email protected]/containerd/continuity/fs, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/opencontainers/runc/libcontainer/user, [email protected]/opencontainers/runtime-spec/specs-go, [email protected]/pkg/errors, [email protected]/syndtr/gocapability/capability, [email protected]/x/sys/unix, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7783763Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/pkg/errors, ctrlflow@strings"
2020-02-14T17:48:02.7784045Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/pkg/errors, ctrlflow@regexp, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7784327Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/pkg/errors, ctrlflow@regexp"
2020-02-14T17:48:02.7784547Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.7786164Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/events, [email protected]/containerd/containerd/filters, [email protected]/containerd/containerd/identifiers, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/typeurl, [email protected]/docker/go-events, [email protected]/gogo/protobuf/types, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@strings"
2020-02-14T17:48:02.7886043Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/events/exchange, [email protected]/containerd/ttrpc, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/grpc, ctrlflow@path/filepath"
2020-02-14T17:48:02.7886951Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.7888984Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/base64, ctrlflow@fmt, [email protected]/containerd/containerd/diff, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/snapshots, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/identity, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, ctrlflow@io/ioutil, ctrlflow@path/filepath"
2020-02-14T17:48:02.7890370Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7890759Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/gogo/protobuf/proto, ctrlflow@reflect, ctrlflow@strings"
2020-02-14T17:48:02.7891047Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/containerd/containerd/api/services/snapshots/v1, [email protected]/containerd/containerd/api/types, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/snapshots, [email protected]/gogo/protobuf/types"
2020-02-14T17:48:02.7891321Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/golang/protobuf/proto, [email protected]/grpc, [email protected]/grpc/codes, [email protected]/grpc/status"
2020-02-14T17:48:02.7895260Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd/api/services/containers/v1, [email protected]/containerd/containerd/api/services/content/v1, [email protected]/containerd/containerd/api/services/diff/v1, [email protected]/containerd/containerd/api/services/events/v1, [email protected]/containerd/containerd/api/services/images/v1, [email protected]/containerd/containerd/api/services/introspection/v1, [email protected]/containerd/containerd/api/services/leases/v1, [email protected]/containerd/containerd/api/services/namespaces/v1, [email protected]/containerd/containerd/api/services/snapshots/v1, [email protected]/containerd/containerd/api/services/tasks/v1, [email protected]/containerd/containerd/api/services/version/v1, [email protected]/containerd/containerd/api/types, [email protected]/containerd/containerd/api/types/task, [email protected]/containerd/containerd/archive, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/cio, [email protected]/containerd/containerd/containers, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/content/proxy, [email protected]/containerd/containerd/diff, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/events, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/images/archive, [email protected]/containerd/containerd/leases, [email protected]/containerd/containerd/leases/proxy, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/oci, [email protected]/containerd/containerd/pkg/dialer, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/plugin, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker, [email protected]/containerd/containerd/remotes/docker/schema1, [email protected]/containerd/containerd/rootfs, [email protected]/containerd/containerd/runtime/linux/runctypes, [email protected]/containerd/containerd/runtime/v2/runc/options, [email protected]/containerd/containerd/snapshots, [email protected]/containerd/containerd/snapshots/proxy, [email protected]/containerd/typeurl, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/identity, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/opencontainers/runtime-spec/specs-go, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, [email protected]/grpc, [email protected]/grpc/codes, [email protected]/grpc/health/grpc_health_v1, [email protected]/grpc/status, ctrlflow@net/http, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7896223Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@fmt, ctrlflow@reflect, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7896827Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: [email protected]/docker/docker/api/types, [email protected]/hashicorp/go-version"
2020-02-14T17:48:02.7897617Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, [email protected]/docker/cli/cli/registry/client, [email protected]/docker/cli/types, [email protected]/docker/distribution/reference, [email protected]/hashicorp/go-version, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@path, ctrlflow@path/filepath"
2020-02-14T17:48:02.7899035Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/containerd/containerd, [email protected]/containerd/containerd/containers, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker, [email protected]/docker/cli/internal/versions, [email protected]/docker/cli/types, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/hashicorp/go-version, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, ctrlflow@strings"
2020-02-14T17:48:02.7899419Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/spf13/pflag, ctrlflow@path/filepath, ctrlflow@reflect, ctrlflow@strconv, ctrlflow@strings, ctrlflow@text/template"
2020-02-14T17:48:02.7901431Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@encoding/base64, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/docker/cli/cli/config, [email protected]/docker/cli/cli/config/configfile, [email protected]/docker/cli/cli/context, [email protected]/docker/cli/cli/context/docker, [email protected]/docker/cli/cli/context/store, [email protected]/docker/cli/cli/debug, [email protected]/docker/cli/cli/flags, [email protected]/docker/cli/cli/manifest/store, [email protected]/docker/cli/cli/registry/client, [email protected]/docker/cli/cli/streams, [email protected]/docker/cli/cli/trust, [email protected]/docker/cli/internal/containerizedengine, [email protected]/docker/cli/opts, [email protected]/docker/cli/types, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/client, [email protected]/docker/docker/pkg/system, [email protected]/docker/docker/pkg/term, [email protected]/docker/docker/registry, [email protected]/docker/go-connections/tlsconfig, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/spf13/cobra, [email protected]/spf13/pflag, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client, [email protected]/theupdateframework/notary/passphrase, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7901995Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, ctrlflow@reflect, ctrlflow@strconv"
2020-02-14T17:48:02.7902277Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@database/sql/driver, ctrlflow@encoding/binary"
2020-02-14T17:48:02.7902585Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, ctrlflow@bufio, ctrlflow@fmt, [email protected]/docker/cli/cli/command, [email protected]/docker/cli/cli/flags, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/client, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/registry, [email protected]/oklog/ulid, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@strings"
2020-02-14T17:48:02.7902912Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@crypto, ctrlflow@crypto/md5, ctrlflow@crypto/rsa, ctrlflow@crypto/sha256, ctrlflow@crypto/sha512, ctrlflow@crypto/x509, ctrlflow@encoding/hex, ctrlflow@encoding/json, ctrlflow@encoding/pem, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@os/exec, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@reflect, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7904287Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/go/canonical/json, [email protected]/in-toto/in-toto-golang/in_toto, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@regexp, ctrlflow@strings"
2020-02-14T17:48:02.7904592Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/hex, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/cnabio/signy/pkg/cnab, [email protected]/cnabio/signy/pkg/docker, [email protected]/cnabio/signy/pkg/intoto, [email protected]/cnabio/signy/pkg/tuf, [email protected]/sirupsen/logrus, ctrlflow@io/ioutil, ctrlflow@path/filepath"
2020-02-14T17:48:02.7904860Z level=warning msg="[runner/govet] govet error: lostcancel: failed prerequisites: [email protected]/cnabio/signy/pkg/trust"
2020-02-14T17:48:02.7905110Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@encoding/hex, ctrlflow@fmt, [email protected]/cnabio/signy/pkg/cnab, [email protected]/cnabio/signy/pkg/intoto, [email protected]/cnabio/signy/pkg/trust, [email protected]/cnabio/signy/pkg/tuf, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/spf13/cobra, ctrlflow@path/filepath"
2020-02-14T17:48:02.7905357Z level=warning msg="[runner/govet] govet error: lostcancel: failed prerequisites: [email protected]/cnabio/signy/cmd"
2020-02-14T17:48:02.7905590Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/hex, ctrlflow@fmt, ctrlflow@reflect, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7905824Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@fmt, ctrlflow@strings"
2020-02-14T17:48:02.7906056Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@encoding/base64, ctrlflow@fmt, ctrlflow@reflect, ctrlflow@regexp, ctrlflow@strconv, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7906313Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@crypto/tls, ctrlflow@crypto/x509, ctrlflow@flag, ctrlflow@fmt, ctrlflow@io/ioutil, ctrlflow@log, ctrlflow@net/http, ctrlflow@net/http/internal, ctrlflow@strconv, ctrlflow@strings, ctrlflow@vendor/golang.org/x/net/http/httpguts"
2020-02-14T17:48:02.7907454Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bufio, ctrlflow@bytes, ctrlflow@encoding/json, ctrlflow@fmt, [email protected]/davecgh/go-spew/spew, [email protected]/pmezard/go-difflib/difflib, [email protected]/yaml.v2, ctrlflow@net/http, ctrlflow@net/http/httptest, ctrlflow@net/url, ctrlflow@reflect, ctrlflow@regexp, ctrlflow@strings, ctrlflow@unicode/utf8"
2020-02-14T17:48:02.7907733Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt"
2020-02-14T17:48:02.7907957Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@bytes, ctrlflow@flag, ctrlflow@fmt, ctrlflow@runtime/debug, ctrlflow@runtime/trace, ctrlflow@strconv, ctrlflow@strings"
2020-02-14T17:48:02.7908263Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@archive/tar, ctrlflow@bufio, ctrlflow@fmt, [email protected]/docker/cli/cli/command, [email protected]/docker/cli/cli/flags, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/client, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/registry, [email protected]/oklog/ulid, [email protected]/sirupsen/logrus, [email protected]/stretchr/testify/assert, ctrlflow@io/ioutil, ctrlflow@path, ctrlflow@path/filepath, ctrlflow@strings, ctrlflow@testing"
2020-02-14T17:48:02.7908579Z level=warning msg="[runner/govet] govet error: lostcancel: failed prerequisites: [email protected]/cnabio/signy/pkg/docker [github.com/cnabio/signy/pkg/docker.test]"
2020-02-14T17:48:02.7909342Z level=warning msg="[runner/govet] govet error: ctrlflow: failed prerequisites: ctrlflow@fmt, [email protected]/docker/go/canonical/json, [email protected]/in-toto/in-toto-golang/in_toto, [email protected]/sirupsen/logrus, [email protected]/stretchr/testify/assert, ctrlflow@io/ioutil, ctrlflow@path/filepath, ctrlflow@regexp, ctrlflow@strings, ctrlflow@testing"
2020-02-14T17:48:02.7909607Z level=warning msg="[runner/govet] govet error: lostcancel: failed prerequisites: [email protected]/cnabio/signy/pkg/intoto [github.com/cnabio/signy/pkg/intoto.test]"
2020-02-14T17:48:02.7909831Z level=warning msg="[runner/govet] govet error: nilfunc: analysis skipped due to errors in package"
2020-02-14T17:48:02.7910040Z level=warning msg="[runner/govet] govet error: nilfunc: analysis skipped due to errors in package"
2020-02-14T17:48:02.7910241Z level=warning msg="[runner/govet] govet error: nilfunc: analysis skipped due to errors in package"
2020-02-14T17:48:02.7910439Z level=warning msg="[runner/govet] govet error: nilfunc: analysis skipped due to errors in package"
2020-02-14T17:48:02.7910627Z level=warning msg="[runner/govet] govet error: nilfunc: analysis skipped due to errors in package"
2020-02-14T17:48:02.7910828Z level=warning msg="[runner/govet] govet error: nilfunc: analysis skipped due to errors in package"
2020-02-14T17:48:02.7911021Z level=warning msg="[runner/govet] govet error: printf: analysis skipped due to errors in package"
2020-02-14T17:48:02.7911213Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@unicode/utf8"
2020-02-14T17:48:02.7911404Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@unicode/utf8"
2020-02-14T17:48:02.7911593Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv, printf@unicode/utf8"
2020-02-14T17:48:02.7911796Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@reflect"
2020-02-14T17:48:02.7912007Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary, printf@strconv"
2020-02-14T17:48:02.7912206Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@reflect"
2020-02-14T17:48:02.7912531Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@internal/fmtsort, printf@reflect, printf@strconv, printf@unicode/utf8"
2020-02-14T17:48:02.7912727Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@unicode/utf8"
2020-02-14T17:48:02.7913007Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@fmt, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7913238Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7913456Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@regexp/syntax, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7913682Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.7913905Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7914115Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@path, printf@strings"
2020-02-14T17:48:02.7914314Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strconv, printf@strings"
2020-02-14T17:48:02.7914533Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@net/url, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.7914749Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@unicode/utf8"
2020-02-14T17:48:02.7914958Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, printf@strconv"
2020-02-14T17:48:02.7915173Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@compress/flate, printf@encoding/binary, printf@fmt"
2020-02-14T17:48:02.7915388Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary"
2020-02-14T17:48:02.7915999Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/cipher, printf@encoding/binary, printf@strconv"
2020-02-14T17:48:02.7916230Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/binary, printf@fmt, printf@strconv, printf@strings"
2020-02-14T17:48:02.7916450Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@crypto/aes, printf@crypto/cipher, printf@encoding/binary, printf@math/big"
2020-02-14T17:48:02.7916658Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv"
2020-02-14T17:48:02.7916868Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/cipher, printf@encoding/binary, printf@strconv"
2020-02-14T17:48:02.7917067Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@math/big"
2020-02-14T17:48:02.7917275Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@encoding/binary"
2020-02-14T17:48:02.7917497Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@math/big, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7917722Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@crypto/aes, printf@crypto/cipher, printf@crypto/elliptic, printf@crypto/sha512, printf@encoding/asn1, printf@math/big"
2020-02-14T17:48:02.7917939Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary"
2020-02-14T17:48:02.7918165Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto, printf@crypto/ed25519/internal/edwards25519, printf@crypto/rand, printf@crypto/sha512, printf@strconv"
2020-02-14T17:48:02.7918512Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@encoding/binary"
2020-02-14T17:48:02.7918705Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv"
2020-02-14T17:48:02.7918978Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto, printf@crypto/rand, printf@math/big"
2020-02-14T17:48:02.7919197Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@encoding/binary"
2020-02-14T17:48:02.7919403Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@encoding/binary"
2020-02-14T17:48:02.7919610Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@math/big"
2020-02-14T17:48:02.7919805Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strings"
2020-02-14T17:48:02.7920020Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/asn1, printf@encoding/hex, printf@fmt, printf@math/big"
2020-02-14T17:48:02.7920243Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@strings"
2020-02-14T17:48:02.7920460Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/asn1, printf@fmt, printf@math/big, printf@reflect"
2020-02-14T17:48:02.7920671Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7920866Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.7921142Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto, printf@crypto/aes, printf@crypto/cipher, printf@crypto/des, printf@crypto/dsa, printf@crypto/ecdsa, printf@crypto/ed25519, printf@crypto/elliptic, printf@crypto/md5, printf@crypto/rsa, printf@crypto/sha1, printf@crypto/sha256, printf@crypto/sha512, printf@crypto/x509/pkix, printf@encoding/asn1, printf@encoding/hex, printf@encoding/pem, printf@fmt, printf@io/ioutil, printf@math/big, printf@net/url, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8, printf@vendor/golang.org/x/crypto/cryptobyte"
2020-02-14T17:48:02.7921430Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/cipher, printf@encoding/binary"
2020-02-14T17:48:02.7921875Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary"
2020-02-14T17:48:02.7922104Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary"
2020-02-14T17:48:02.7922336Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/cipher, printf@encoding/binary, printf@vendor/golang.org/x/crypto/internal/chacha20, printf@vendor/golang.org/x/crypto/poly1305, printf@vendor/golang.org/x/sys/cpu"
2020-02-14T17:48:02.7922636Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto, printf@crypto/aes, printf@crypto/cipher, printf@crypto/des, printf@crypto/ecdsa, printf@crypto/ed25519, printf@crypto/elliptic, printf@crypto/md5, printf@crypto/rand, printf@crypto/rc4, printf@crypto/rsa, printf@crypto/sha1, printf@crypto/sha256, printf@crypto/sha512, printf@crypto/x509, printf@encoding/asn1, printf@encoding/pem, printf@fmt, printf@io/ioutil, printf@math/big, printf@strconv, printf@strings, printf@vendor/golang.org/x/crypto/chacha20poly1305, printf@vendor/golang.org/x/crypto/cryptobyte"
2020-02-14T17:48:02.7922900Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@unicode/utf8"
2020-02-14T17:48:02.7923224Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt"
2020-02-14T17:48:02.7923437Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@log, printf@unicode/utf8"
2020-02-14T17:48:02.7923726Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@unicode/utf8, printf@vendor/golang.org/x/text/transform, printf@vendor/golang.org/x/text/unicode/bidi"
2020-02-14T17:48:02.7923970Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary, printf@fmt, printf@unicode/utf8, printf@vendor/golang.org/x/text/transform"
2020-02-14T17:48:02.7924204Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strings, printf@unicode/utf8, printf@vendor/golang.org/x/text/secure/bidirule, printf@vendor/golang.org/x/text/unicode/bidi, printf@vendor/golang.org/x/text/unicode/norm"
2020-02-14T17:48:02.7924440Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, printf@io/ioutil, printf@strconv, printf@strings"
2020-02-14T17:48:02.7924888Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@net/textproto, printf@strings, printf@unicode/utf8, printf@vendor/golang.org/x/net/idna"
2020-02-14T17:48:02.7925131Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@net/url, printf@strings, printf@unicode/utf8, printf@vendor/golang.org/x/net/idna"
2020-02-14T17:48:02.7925344Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt"
2020-02-14T17:48:02.7925549Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/base64, printf@fmt, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7925768Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt"
2020-02-14T17:48:02.7925997Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@crypto/rand, printf@fmt, printf@io/ioutil, printf@mime, printf@mime/quotedprintable, printf@net/textproto, printf@strings"
2020-02-14T17:48:02.7926225Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/tls, printf@net/textproto, printf@reflect"
2020-02-14T17:48:02.7926442Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, printf@strings"
2020-02-14T17:48:02.7926746Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@compress/gzip, printf@crypto/rand, printf@crypto/tls, printf@encoding/base64, printf@encoding/binary, printf@fmt, printf@io/ioutil, printf@log, printf@mime, printf@mime/multipart, printf@net/http/httptrace, printf@net/http/internal, printf@net/textproto, printf@net/url, printf@path, printf@path/filepath, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8, printf@vendor/golang.org/x/net/http/httpguts, printf@vendor/golang.org/x/net/http/httpproxy, printf@vendor/golang.org/x/net/http2/hpack, printf@vendor/golang.org/x/net/idna"
2020-02-14T17:48:02.7927039Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, printf@log, printf@mime, printf@net/textproto, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7927808Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, [email protected]/qri-io/jsonpointer, printf@net/http, printf@net/mail, printf@net/url, printf@reflect, printf@regexp, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7928440Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/pkg/errors, [email protected]/qri-io/jsonschema, printf@strconv, printf@strings"
2020-02-14T17:48:02.7928816Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@fmt, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7929584Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/Masterminds/semver, [email protected]/cnabio/cnab-go/bundle/definition, [email protected]/docker/go/canonical/json, [email protected]/pkg/errors, printf@io/ioutil, printf@strings"
2020-02-14T17:48:02.7929996Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strconv"
2020-02-14T17:48:02.7930222Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/json, printf@fmt, printf@log, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.7930449Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7930669Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7930865Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.7931097Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes/any, [email protected]/golang/protobuf/ptypes/duration, [email protected]/golang/protobuf/ptypes/timestamp, printf@reflect, printf@strings"
2020-02-14T17:48:02.7931335Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes/any"
2020-02-14T17:48:02.7931555Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@io/ioutil, printf@log, printf@strconv"
2020-02-14T17:48:02.7931775Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/grpclog"
2020-02-14T17:48:02.7931988Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/connectivity"
2020-02-14T17:48:02.7932225Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes, [email protected]/genproto/googleapis/rpc/status, [email protected]/grpc/codes, [email protected]/grpc/internal"
2020-02-14T17:48:02.7932467Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/pkg/errors, [email protected]/grpc/codes, [email protected]/grpc/status, printf@strings"
2020-02-14T17:48:02.7932690Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@fmt, printf@regexp, printf@strings"
2020-02-14T17:48:02.7932888Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt"
2020-02-14T17:48:02.7933489Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go"
2020-02-14T17:48:02.7934142Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@io/ioutil"
2020-02-14T17:48:02.7934386Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/binary, printf@strings"
2020-02-14T17:48:02.7934611Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/json, printf@fmt, [email protected]/x/sys/unix, printf@log, printf@reflect, printf@strings"
2020-02-14T17:48:02.7934985Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.7935790Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8051173Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@strings"
2020-02-14T17:48:02.8053128Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@strings"
2020-02-14T17:48:02.8053441Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/json, printf@fmt, printf@strings"
2020-02-14T17:48:02.8053673Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8054294Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, [email protected]/docker/docker-credential-helpers/credentials, printf@os/exec, printf@strings"
2020-02-14T17:48:02.8054922Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker-credential-helpers/client, [email protected]/docker/docker-credential-helpers/credentials, printf@os/exec, printf@strings"
2020-02-14T17:48:02.8055191Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/docker/cli/cli/config/credentials, [email protected]/pkg/errors, printf@io/ioutil, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8055429Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@path/filepath"
2020-02-14T17:48:02.8055659Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, printf@strconv, printf@strings"
2020-02-14T17:48:02.8055893Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8056695Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, [email protected]/containerd/continuity/pathdriver, [email protected]/docker/docker/pkg/mount, [email protected]/docker/go-units, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/x/sys/unix, printf@io/ioutil, printf@os/exec, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8056960Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, printf@strconv, printf@strings"
2020-02-14T17:48:02.8057474Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, [email protected]/docker/docker/pkg/system, [email protected]/opencontainers/runc/libcontainer/user, printf@os/exec, printf@path/filepath, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8057940Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/pkg/idtools, [email protected]/opencontainers/runc/libcontainer/user, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8058274Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/cli/cli/config/configfile, [email protected]/docker/cli/cli/config/credentials, [email protected]/docker/docker/pkg/homedir, [email protected]/pkg/errors, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8058526Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/pkg/errors"
2020-02-14T17:48:02.8059528Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/opencontainers/go-digest, printf@net/url, printf@path, printf@regexp, printf@strings"
2020-02-14T17:48:02.8059771Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@compress/gzip, printf@fmt, [email protected]/containerd/containerd/log, printf@os/exec, printf@strconv"
2020-02-14T17:48:02.8061126Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/remotes, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@io/ioutil, printf@strconv, printf@strings"
2020-02-14T17:48:02.8061458Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, printf@net/http, printf@strings"
2020-02-14T17:48:02.8061687Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@net/http, printf@net/url, printf@strings"
2020-02-14T17:48:02.8063030Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/labels, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/reference, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker/schema1, [email protected]/docker/distribution/registry/api/errcode, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/net/context/ctxhttp, printf@io/ioutil, printf@net/http, printf@net/url, printf@path, printf@strings"
2020-02-14T17:48:02.8063391Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8063606Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt"
2020-02-14T17:48:02.8063815Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json"
2020-02-14T17:48:02.8064028Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strconv, printf@strings"
2020-02-14T17:48:02.8064665Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/api/types/blkiodev, [email protected]/docker/docker/api/types/strslice, [email protected]/docker/go-connections/nat, [email protected]/docker/go-units, printf@strings"
2020-02-14T17:48:02.8065881Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv, printf@strings"
2020-02-14T17:48:02.8066235Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/docker/docker/api/types/versions, printf@regexp, printf@strings"
2020-02-14T17:48:02.8066515Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/errdefs, [email protected]/docker/distribution/registry/api/errcode, [email protected]/sirupsen/logrus, [email protected]/grpc/codes, [email protected]/grpc/status, printf@net/http"
2020-02-14T17:48:02.8066768Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/errdefs"
2020-02-14T17:48:02.8068153Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/opencontainers/image-spec/specs-go/v1"
2020-02-14T17:48:02.8068442Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/json, printf@fmt, printf@log, printf@reflect, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8068675Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto"
2020-02-14T17:48:02.8068911Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/network, [email protected]/docker/docker/api/types/swarm/runtime"
2020-02-14T17:48:02.8069869Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@encoding/json, printf@fmt, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/network, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/api/types/swarm, [email protected]/docker/go-connections/nat, [email protected]/docker/go-units, printf@strings"
2020-02-14T17:48:02.8071352Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/csv, printf@fmt, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/blkiodev, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/swarm, [email protected]/docker/go-connections/nat, [email protected]/docker/go-units, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@math/big, printf@net/url, printf@path, printf@regexp, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8072325Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/opencontainers/go-digest, printf@strings"
2020-02-14T17:48:02.8072923Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/distribution/digestset, [email protected]/opencontainers/go-digest, printf@path, printf@regexp, printf@strings"
2020-02-14T17:48:02.8073592Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, printf@mime, printf@net/http, printf@strings"
2020-02-14T17:48:02.8074165Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/distribution, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.8075825Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/sha256, printf@encoding/json, printf@fmt, [email protected]/cnabio/cnab-go/bundle, [email protected]/containerd/containerd/images, [email protected]/docker/distribution, [email protected]/docker/distribution/manifest/schema2, [email protected]/docker/distribution/reference, [email protected]/docker/go/canonical/json, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1"
2020-02-14T17:48:02.8076208Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/docker/api/types, printf@strings"
2020-02-14T17:48:02.8076444Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, printf@net/http, printf@net/url, printf@path, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8077206Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/gorilla/mux, [email protected]/opencontainers/go-digest, printf@net/http, printf@net/url, printf@regexp, printf@strings"
2020-02-14T17:48:02.8077467Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@net/http, printf@net/url, printf@strings"
2020-02-14T17:48:02.8077680Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@net/http, printf@regexp, printf@strconv"
2020-02-14T17:48:02.8078432Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, printf@log, printf@net/http, printf@strconv, printf@strings"
2020-02-14T17:48:02.8078706Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.8078936Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/prometheus/client_model/go"
2020-02-14T17:48:02.8079151Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary, [email protected]/golang/protobuf/proto"
2020-02-14T17:48:02.8079655Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv, printf@strings"
2020-02-14T17:48:02.8079898Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, printf@regexp, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8080153Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/matttproud/golang_protobuf_extensions/pbutil, [email protected]/prometheus/client_model/go, [email protected]/prometheus/common/internal/bitbucket.org/ww/goautoneg, [email protected]/prometheus/common/model, printf@io/ioutil, printf@mime, printf@net/http, printf@strconv, printf@strings"
2020-02-14T17:48:02.8080419Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@path/filepath"
2020-02-14T17:48:02.8080635Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@io/ioutil, printf@strconv, printf@strings"
2020-02-14T17:48:02.8080889Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/hex, printf@fmt, [email protected]/prometheus/procfs/internal/fs, [email protected]/prometheus/procfs/internal/util, printf@io/ioutil, printf@path/filepath, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8081125Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strings"
2020-02-14T17:48:02.8081395Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@expvar, printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/prometheus/client_golang/prometheus/internal, [email protected]/prometheus/client_model/go, [email protected]/prometheus/common/expfmt, [email protected]/prometheus/common/model, [email protected]/prometheus/procfs, printf@io/ioutil, printf@path/filepath, printf@runtime/debug, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8081923Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@compress/gzip, printf@crypto/tls, printf@fmt, [email protected]/prometheus/client_golang/prometheus, [email protected]/prometheus/client_model/go, [email protected]/prometheus/common/expfmt, printf@net/http, printf@net/http/httptrace, printf@strconv, printf@strings"
2020-02-14T17:48:02.8082225Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/prometheus/client_golang/prometheus, [email protected]/prometheus/client_golang/prometheus/promhttp, printf@net/http"
2020-02-14T17:48:02.8082819Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/go-metrics"
2020-02-14T17:48:02.8084011Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/distribution, [email protected]/docker/distribution/metrics, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.8085141Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/distribution, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/storage/cache, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.8086332Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, [email protected]/docker/distribution, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/docker/distribution/registry/api/v2, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/distribution/registry/storage/cache, [email protected]/docker/distribution/registry/storage/cache/memory, [email protected]/opencontainers/go-digest, printf@io/ioutil, printf@net/http, printf@net/url, printf@strconv, printf@strings"
2020-02-14T17:48:02.8086914Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/distribution/registry/client, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, printf@net/http, printf@net/url, printf@strings"
2020-02-14T17:48:02.8087172Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/x/sys/unix, printf@strings"
2020-02-14T17:48:02.8087392Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strings"
2020-02-14T17:48:02.8088373Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/docker/pkg/term, [email protected]/docker/go-units, [email protected]/morikuni/aec, printf@strings"
2020-02-14T17:48:02.8088635Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/sha256, printf@encoding/hex, printf@io/ioutil, printf@path/filepath"
2020-02-14T17:48:02.8088863Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/rand, printf@encoding/hex, printf@fmt, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8089598Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strconv, printf@strings"
2020-02-14T17:48:02.8090021Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, printf@io/ioutil, printf@os/user, printf@path, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8090418Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, printf@bytes, printf@compress/gzip, printf@crypto, printf@crypto/sha256, printf@encoding/hex, printf@fmt, printf@path, printf@strconv, printf@strings"
2020-02-14T17:48:02.8090731Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/sirupsen/logrus, printf@net/http"
2020-02-14T17:48:02.8090943Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strconv"
2020-02-14T17:48:02.8091159Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/x/net/internal/socks, printf@net/url, printf@strings"
2020-02-14T17:48:02.8091388Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/tls, printf@fmt, [email protected]/x/net/proxy, printf@net/http, printf@net/url, printf@strings"
2020-02-14T17:48:02.8091626Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/tls, printf@crypto/x509, printf@encoding/pem, printf@fmt, [email protected]/pkg/errors, printf@io/ioutil"
2020-02-14T17:48:02.8091858Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@net/http, printf@net/url, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8093552Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto/sha256, printf@crypto/sha512, printf@crypto/tls, printf@encoding/hex, printf@encoding/json, printf@fmt, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/errdefs, [email protected]/docker/docker/pkg/ioutils, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/pkg/stringid, [email protected]/docker/docker/pkg/tarsum, [email protected]/docker/docker/registry/resumable, [email protected]/docker/go-connections/sockets, [email protected]/docker/go-connections/tlsconfig, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@net/http, printf@net/http/cookiejar, printf@net/url, printf@path/filepath, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8095444Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto/tls, printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/cnabio/cnab-go/bundle, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker, [email protected]/docker/cli/cli/config, [email protected]/docker/cli/cli/config/configfile, [email protected]/docker/cli/cli/config/credentials, [email protected]/docker/cli/opts, [email protected]/docker/cnab-to-oci/converter, [email protected]/docker/cnab-to-oci/internal, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/registry, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@net/http, printf@reflect, printf@strings"
2020-02-14T17:48:02.8096035Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strconv, printf@strings"
2020-02-14T17:48:02.8096241Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/api/types"
2020-02-14T17:48:02.8096569Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, printf@io/ioutil, printf@log, printf@net/http, printf@net/http/internal, printf@net/textproto, printf@net/url, printf@strings, printf@vendor/golang.org/x/net/http/httpguts"
2020-02-14T17:48:02.8098093Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@crypto/tls, printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/network, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/api/types/swarm, [email protected]/docker/docker/api/types/time, [email protected]/docker/docker/api/types/versions, [email protected]/docker/docker/api/types/volume, [email protected]/docker/docker/errdefs, [email protected]/docker/go-connections/sockets, [email protected]/docker/go-connections/tlsconfig, [email protected]/opencontainers/go-digest, [email protected]/pkg/errors, printf@io/ioutil, printf@net/http, printf@net/http/httputil, printf@net/url, printf@path, printf@path/filepath, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8099687Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/cnabio/cnab-go/bundle, [email protected]/containerd/containerd/remotes, [email protected]/docker/cli/cli/config, [email protected]/docker/cnab-to-oci/remotes, [email protected]/docker/distribution/reference, [email protected]/docker/docker/client, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@strings"
2020-02-14T17:48:02.8099972Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@crypto/md5"
2020-02-14T17:48:02.8100191Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/rand, printf@fmt"
2020-02-14T17:48:02.8100979Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/sha512"
2020-02-14T17:48:02.8101638Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto, printf@crypto/ecdsa, printf@crypto/rsa, printf@crypto/sha256, printf@crypto/sha512, printf@crypto/x509, printf@encoding/asn1, printf@encoding/hex, printf@fmt, [email protected]/agl/ed25519, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, printf@io/ioutil, printf@math/big, printf@path, printf@regexp, printf@strings"
2020-02-14T17:48:02.8101983Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/distribution/uuid, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary/tuf/data, printf@io/ioutil, printf@path/filepath"
2020-02-14T17:48:02.8102290Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto/aes, printf@crypto/cipher, printf@crypto/ecdsa, printf@crypto/elliptic, printf@crypto/rand, printf@crypto/rsa, printf@crypto/sha1, printf@crypto/sha256, printf@crypto/sha512, printf@crypto/x509, printf@crypto/x509/pkix, printf@encoding/asn1, printf@encoding/hex, printf@encoding/pem, printf@fmt, [email protected]/agl/ed25519, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/tuf/data, printf@io/ioutil, printf@math/big, printf@strings"
2020-02-14T17:48:02.8102710Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt"
2020-02-14T17:48:02.8103052Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto/sha256, printf@encoding/json, printf@encoding/pem, printf@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, [email protected]/theupdateframework/notary/tuf/validation, printf@io/ioutil, printf@mime/multipart, printf@net/http, printf@net/url, printf@path, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8103395Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/pem, printf@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/storage, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, printf@io/ioutil, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8104046Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@crypto/rand, printf@crypto/x509, printf@encoding/pem, printf@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils"
2020-02-14T17:48:02.8104379Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto, printf@crypto/ecdsa, printf@crypto/rand, printf@crypto/rsa, printf@crypto/sha256, printf@crypto/x509, printf@encoding/pem, printf@fmt, [email protected]/agl/ed25519, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, printf@math/big, printf@strings"
2020-02-14T17:48:02.8104676Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/x509, printf@fmt, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, [email protected]/theupdateframework/notary/tuf/utils, printf@strings"
2020-02-14T17:48:02.8105232Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, [email protected]/theupdateframework/notary/tuf/utils, printf@strings"
2020-02-14T17:48:02.8105615Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client/changelist, [email protected]/theupdateframework/notary/cryptoservice, [email protected]/theupdateframework/notary/storage, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, [email protected]/theupdateframework/notary/tuf/utils, printf@io/ioutil, printf@net/http, printf@net/url, printf@path/filepath, printf@regexp"
2020-02-14T17:48:02.8105968Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, [email protected]/x/sys/unix, printf@strconv, printf@unicode/utf8"
2020-02-14T17:48:02.8106318Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, [email protected]/theupdateframework/notary, [email protected]/x/crypto/ssh/terminal, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8106755Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/sha256, printf@crypto/tls, printf@crypto/x509, printf@encoding/hex, printf@fmt, [email protected]/cnabio/signy/pkg/cnab, [email protected]/docker/cli/cli/config, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client, [email protected]/theupdateframework/notary/cryptoservice, [email protected]/theupdateframework/notary/passphrase, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/utils, printf@io/ioutil, printf@net/http, printf@net/url, printf@path/filepath"
2020-02-14T17:48:02.8107137Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@compress/flate, printf@encoding/binary, printf@fmt, printf@io/ioutil, printf@path, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8108023Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, printf@archive/zip, printf@bufio, printf@bytes, printf@crypto/sha256, printf@encoding/json, printf@fmt, [email protected]/docker/docker/errdefs, [email protected]/opencontainers/go-digest, printf@io/ioutil, printf@net/http, printf@path, printf@path/filepath, printf@reflect, printf@strings"
2020-02-14T17:48:02.8108315Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/cli/cli/context/store, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@io/ioutil"
2020-02-14T17:48:02.8108540Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@os/exec, printf@strings"
2020-02-14T17:48:02.8108770Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/pkg/errors, printf@net/url"
2020-02-14T17:48:02.8109006Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/cli/cli/connhelper/commandconn, [email protected]/docker/cli/cli/connhelper/ssh, [email protected]/pkg/errors, printf@net/url"
2020-02-14T17:48:02.8109811Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/tls, printf@crypto/x509, printf@encoding/pem, printf@fmt, [email protected]/docker/cli/cli/connhelper, [email protected]/docker/cli/cli/context, [email protected]/docker/cli/cli/context/store, [email protected]/docker/docker/client, [email protected]/docker/go-connections/tlsconfig, [email protected]/pkg/errors, printf@net/http"
2020-02-14T17:48:02.8110078Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.8110297Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8110535Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@encoding/csv, printf@encoding/hex, printf@flag, printf@fmt, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8111212Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/cli/cli/config, [email protected]/docker/cli/opts, [email protected]/docker/go-connections/tlsconfig, [email protected]/sirupsen/logrus, [email protected]/spf13/pflag, printf@path/filepath"
2020-02-14T17:48:02.8111994Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/distribution, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1"
2020-02-14T17:48:02.8112884Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/docker/distribution, [email protected]/docker/distribution/manifest/manifestlist, [email protected]/docker/distribution/manifest/schema2, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors"
2020-02-14T17:48:02.8113787Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/cli/cli/manifest/types, [email protected]/docker/distribution/manifest/manifestlist, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@io/ioutil, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8115791Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/docker/cli/cli/config, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/auth/challenge, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/registry, [email protected]/docker/go-connections/tlsconfig, [email protected]/opencontainers/go-digest, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client, [email protected]/theupdateframework/notary/passphrase, [email protected]/theupdateframework/notary/storage, [email protected]/theupdateframework/notary/trustmanager, [email protected]/theupdateframework/notary/trustpinning, [email protected]/theupdateframework/notary/tuf/data, [email protected]/theupdateframework/notary/tuf/signed, printf@net/http, printf@net/url, printf@path, printf@path/filepath"
2020-02-14T17:48:02.8117415Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/docker/cli/cli/manifest/types, [email protected]/docker/cli/cli/trust, [email protected]/docker/distribution, [email protected]/docker/distribution/manifest/manifestlist, [email protected]/docker/distribution/manifest/schema2, [email protected]/docker/distribution/reference, [email protected]/docker/distribution/registry/api/errcode, [email protected]/docker/distribution/registry/api/v2, [email protected]/docker/distribution/registry/client, [email protected]/docker/distribution/registry/client/auth, [email protected]/docker/distribution/registry/client/transport, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/registry, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@net/http, printf@strings"
2020-02-14T17:48:02.8117800Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/pkg/term, [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.8118028Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/binary, printf@fmt, [email protected]/gogo/protobuf/proto, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8118252Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@log"
2020-02-14T17:48:02.8118595Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8118810Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8119109Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, printf@internal/fmtsort, printf@io/ioutil, printf@net/url, printf@path/filepath, printf@reflect, printf@strings, printf@text/template/parse, printf@unicode/utf8"
2020-02-14T17:48:02.8119373Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, printf@html, printf@io/ioutil, printf@path/filepath, printf@reflect, printf@strconv, printf@strings, printf@text/template, printf@text/template/parse, printf@unicode/utf8"
2020-02-14T17:48:02.8119607Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@unicode/utf8"
2020-02-14T17:48:02.8119842Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, [email protected]/x/net/internal/timeseries, printf@html/template, printf@log, printf@net/http, printf@net/url, printf@strconv, printf@strings, printf@text/tabwriter"
2020-02-14T17:48:02.8120078Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/tls, printf@crypto/x509, printf@fmt, [email protected]/golang/protobuf/proto, printf@io/ioutil, printf@strings"
2020-02-14T17:48:02.8120295Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@strings"
2020-02-14T17:48:02.8120503Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/internal"
2020-02-14T17:48:02.8120719Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/serviceconfig"
2020-02-14T17:48:02.8120974Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/grpc/connectivity, [email protected]/grpc/credentials, [email protected]/grpc/internal, [email protected]/grpc/metadata, [email protected]/grpc/resolver, [email protected]/grpc/serviceconfig, printf@strings"
2020-02-14T17:48:02.8121230Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/balancer, [email protected]/grpc/connectivity, [email protected]/grpc/grpclog, [email protected]/grpc/resolver"
2020-02-14T17:48:02.8121464Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/balancer, [email protected]/grpc/balancer/base, [email protected]/grpc/grpclog, [email protected]/grpc/resolver"
2020-02-14T17:48:02.8121684Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strings"
2020-02-14T17:48:02.8121909Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/golang/protobuf/proto, [email protected]/grpc/encoding"
2020-02-14T17:48:02.8122116Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/metadata"
2020-02-14T17:48:02.8122350Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes/duration, [email protected]/golang/protobuf/ptypes/timestamp"
2020-02-14T17:48:02.8122612Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@encoding/binary, printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/golang/protobuf/ptypes, [email protected]/grpc/binarylog/grpc_binarylog_v1, [email protected]/grpc/grpclog, [email protected]/grpc/metadata, [email protected]/grpc/status, printf@io/ioutil, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8122962Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/x/sys/unix, [email protected]/grpc/connectivity, [email protected]/grpc/credentials, [email protected]/grpc/grpclog"
2020-02-14T17:48:02.8123220Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@strings"
2020-02-14T17:48:02.8123445Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@unicode/utf8"
2020-02-14T17:48:02.8124218Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@log, printf@unicode/utf8"
2020-02-14T17:48:02.8124464Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/x/text/transform, [email protected]/x/text/unicode/bidi, printf@unicode/utf8"
2020-02-14T17:48:02.8124694Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/binary, printf@fmt, [email protected]/x/text/transform, printf@unicode/utf8"
2020-02-14T17:48:02.8124934Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/x/text/secure/bidirule, [email protected]/x/text/unicode/bidi, [email protected]/x/text/unicode/norm, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8125172Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/x/net/idna, printf@net/textproto, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8125375Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt"
2020-02-14T17:48:02.8125643Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@compress/gzip, printf@crypto/rand, printf@crypto/tls, printf@encoding/binary, printf@fmt, [email protected]/x/net/http/httpguts, [email protected]/x/net/http2/hpack, [email protected]/x/net/idna, printf@io/ioutil, printf@log, printf@net/http, printf@net/http/httptrace, printf@net/textproto, printf@net/url, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8125917Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/x/sys/unix, [email protected]/grpc/grpclog"
2020-02-14T17:48:02.8126135Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/credentials"
2020-02-14T17:48:02.8126347Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/metadata"
2020-02-14T17:48:02.8126648Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/base64, printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/x/net/http2, [email protected]/x/net/http2/hpack, [email protected]/genproto/googleapis/rpc/status, [email protected]/grpc/codes, [email protected]/grpc/credentials, [email protected]/grpc/grpclog, [email protected]/grpc/internal, [email protected]/grpc/internal/channelz, [email protected]/grpc/internal/syscall, [email protected]/grpc/metadata, [email protected]/grpc/peer, [email protected]/grpc/stats, [email protected]/grpc/status, printf@net/http, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8126934Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/grpc/grpclog, printf@strconv"
2020-02-14T17:48:02.8128301Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/grpc/grpclog, [email protected]/grpc/resolver, printf@strconv, printf@strings"
2020-02-14T17:48:02.8128571Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/grpc/resolver"
2020-02-14T17:48:02.8129180Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@compress/gzip, printf@encoding/base64, printf@encoding/binary, printf@encoding/json, printf@fmt, [email protected]/x/net/trace, [email protected]/grpc/balancer, [email protected]/grpc/balancer/roundrobin, [email protected]/grpc/codes, [email protected]/grpc/connectivity, [email protected]/grpc/credentials, [email protected]/grpc/encoding, [email protected]/grpc/encoding/proto, [email protected]/grpc/grpclog, [email protected]/grpc/internal, [email protected]/grpc/internal/balancerload, [email protected]/grpc/internal/binarylog, [email protected]/grpc/internal/channelz, [email protected]/grpc/internal/envconfig, [email protected]/grpc/internal/transport, [email protected]/grpc/metadata, [email protected]/grpc/naming, [email protected]/grpc/peer, [email protected]/grpc/resolver, [email protected]/grpc/resolver/dns, [email protected]/grpc/resolver/passthrough, [email protected]/grpc/serviceconfig, [email protected]/grpc/stats, [email protected]/grpc/status, printf@io/ioutil, printf@net/http, printf@net/http/httputil, printf@net/url, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8129563Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8130480Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8131120Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, printf@reflect, printf@strings"
2020-02-14T17:48:02.8131381Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8131630Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/pkg/errors, printf@path, printf@reflect"
2020-02-14T17:48:02.8131874Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/typeurl, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8132133Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8132373Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, printf@reflect, printf@strconv, printf@strings"
2020-02-14T17:48:02.8132624Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/googleapis/google/rpc, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8132992Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8133282Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8133530Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/api/types, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8133777Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, printf@reflect, printf@strings"
2020-02-14T17:48:02.8134577Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/api/types, [email protected]/containerd/containerd/api/types/task, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8134839Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/grpc, printf@reflect, printf@strings"
2020-02-14T17:48:02.8135069Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, [email protected]/x/sys/unix, printf@path/filepath"
2020-02-14T17:48:02.8135308Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, [email protected]/containerd/continuity/sysx, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, printf@io/ioutil, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8135553Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, printf@io/ioutil, printf@os/exec, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8135814Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, [email protected]/containerd/containerd/log, [email protected]/containerd/continuity/fs, [email protected]/containerd/continuity/sysx, [email protected]/opencontainers/runc/libcontainer/system, [email protected]/pkg/errors, [email protected]/x/sys/unix, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8136069Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/pkg/errors"
2020-02-14T17:48:02.8136823Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/fifo, [email protected]/pkg/errors, printf@io/ioutil, printf@net/url, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8137076Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/gogo/protobuf/types"
2020-02-14T17:48:02.8137941Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/api/services/content/v1, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors"
2020-02-14T17:48:02.8138225Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, [email protected]/opencontainers/runc/libcontainer/system, [email protected]/pkg/errors, [email protected]/x/sys/unix, printf@io/ioutil, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8138698Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/sys, [email protected]/pkg/errors, [email protected]/x/sys/unix, printf@io/ioutil, printf@path, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8139576Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/mount, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@os/exec"
2020-02-14T17:48:02.8139851Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/typeurl, [email protected]/gogo/protobuf/types"
2020-02-14T17:48:02.8141025Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, printf@bytes, printf@encoding/json, printf@fmt, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/reference, [email protected]/docker/distribution/reference, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@io/ioutil, printf@path, printf@strings"
2020-02-14T17:48:02.8141350Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/base64, printf@fmt, [email protected]/grpc/metadata"
2020-02-14T17:48:02.8141592Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/api/services/leases/v1, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/leases"
2020-02-14T17:48:02.8141864Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@encoding/binary, printf@fmt, [email protected]/gogo/protobuf/proto, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, [email protected]/genproto/googleapis/rpc/status, [email protected]/grpc/codes, [email protected]/grpc/status, printf@path, printf@strings"
2020-02-14T17:48:02.8142121Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/containerd/ttrpc, [email protected]/pkg/errors, [email protected]/grpc/metadata, printf@regexp"
2020-02-14T17:48:02.8142361Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/containerd/containerd/mount, printf@strings"
2020-02-14T17:48:02.8142575Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt"
2020-02-14T17:48:02.8142777Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@fmt, printf@strings"
2020-02-14T17:48:02.8144019Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@encoding/json, printf@fmt, [email protected]/containerd/containerd/containers, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/snapshots, [email protected]/containerd/continuity/fs, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/opencontainers/runc/libcontainer/user, [email protected]/opencontainers/runtime-spec/specs-go, [email protected]/pkg/errors, [email protected]/syndtr/gocapability/capability, [email protected]/x/sys/unix, printf@io/ioutil, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8145137Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/pkg/errors, printf@strings"
2020-02-14T17:48:02.8146878Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/pkg/errors, printf@regexp, printf@unicode/utf8"
2020-02-14T17:48:02.8147130Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/pkg/errors, printf@regexp"
2020-02-14T17:48:02.8147363Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/sirupsen/logrus"
2020-02-14T17:48:02.8148415Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/events, [email protected]/containerd/containerd/filters, [email protected]/containerd/containerd/identifiers, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/typeurl, [email protected]/docker/go-events, [email protected]/gogo/protobuf/types, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@strings"
2020-02-14T17:48:02.8149226Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/events/exchange, [email protected]/containerd/ttrpc, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/grpc, printf@path/filepath"
2020-02-14T17:48:02.8149805Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@crypto/sha256, printf@crypto/sha512, [email protected]/opencontainers/go-digest"
2020-02-14T17:48:02.8150810Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/base64, printf@fmt, [email protected]/containerd/containerd/diff, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/snapshots, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/identity, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, printf@io/ioutil, printf@path/filepath"
2020-02-14T17:48:02.8151101Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, printf@reflect, printf@strings"
2020-02-14T17:48:02.8151325Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/gogo/protobuf/proto, printf@reflect, printf@strings"
2020-02-14T17:48:02.8151594Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/containerd/containerd/api/services/snapshots/v1, [email protected]/containerd/containerd/api/types, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/snapshots, [email protected]/gogo/protobuf/types"
2020-02-14T17:48:02.8151868Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/golang/protobuf/proto, [email protected]/grpc, [email protected]/grpc/codes, [email protected]/grpc/status"
2020-02-14T17:48:02.8155666Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, printf@bytes, printf@encoding/json, printf@fmt, [email protected]/containerd/containerd/api/services/containers/v1, [email protected]/containerd/containerd/api/services/content/v1, [email protected]/containerd/containerd/api/services/diff/v1, [email protected]/containerd/containerd/api/services/events/v1, [email protected]/containerd/containerd/api/services/images/v1, [email protected]/containerd/containerd/api/services/introspection/v1, [email protected]/containerd/containerd/api/services/leases/v1, [email protected]/containerd/containerd/api/services/namespaces/v1, [email protected]/containerd/containerd/api/services/snapshots/v1, [email protected]/containerd/containerd/api/services/tasks/v1, [email protected]/containerd/containerd/api/services/version/v1, [email protected]/containerd/containerd/api/types, [email protected]/containerd/containerd/api/types/task, [email protected]/containerd/containerd/archive, [email protected]/containerd/containerd/archive/compression, [email protected]/containerd/containerd/cio, [email protected]/containerd/containerd/containers, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/content/proxy, [email protected]/containerd/containerd/diff, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/events, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/images/archive, [email protected]/containerd/containerd/leases, [email protected]/containerd/containerd/leases/proxy, [email protected]/containerd/containerd/log, [email protected]/containerd/containerd/mount, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/oci, [email protected]/containerd/containerd/pkg/dialer, [email protected]/containerd/containerd/platforms, [email protected]/containerd/containerd/plugin, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker, [email protected]/containerd/containerd/remotes/docker/schema1, [email protected]/containerd/containerd/rootfs, [email protected]/containerd/containerd/runtime/linux/runctypes, [email protected]/containerd/containerd/runtime/v2/runc/options, [email protected]/containerd/containerd/snapshots, [email protected]/containerd/containerd/snapshots/proxy, [email protected]/containerd/typeurl, [email protected]/gogo/protobuf/proto, [email protected]/gogo/protobuf/types, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/identity, [email protected]/opencontainers/image-spec/specs-go, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/opencontainers/runtime-spec/specs-go, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/x/sys/unix, [email protected]/grpc, [email protected]/grpc/codes, [email protected]/grpc/health/grpc_health_v1, [email protected]/grpc/status, printf@net/http, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8156604Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@fmt, printf@reflect, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8157187Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: [email protected]/docker/docker/api/types, [email protected]/hashicorp/go-version"
2020-02-14T17:48:02.8157936Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, [email protected]/docker/cli/cli/registry/client, [email protected]/docker/cli/types, [email protected]/docker/distribution/reference, [email protected]/hashicorp/go-version, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@path, printf@path/filepath"
2020-02-14T17:48:02.8159404Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/json, printf@fmt, [email protected]/containerd/containerd, [email protected]/containerd/containerd/containers, [email protected]/containerd/containerd/content, [email protected]/containerd/containerd/errdefs, [email protected]/containerd/containerd/images, [email protected]/containerd/containerd/namespaces, [email protected]/containerd/containerd/remotes, [email protected]/containerd/containerd/remotes/docker, [email protected]/docker/cli/internal/versions, [email protected]/docker/cli/types, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/hashicorp/go-version, [email protected]/opencontainers/go-digest, [email protected]/opencontainers/image-spec/specs-go/v1, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, printf@strings"
2020-02-14T17:48:02.8159832Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/json, printf@fmt, [email protected]/spf13/pflag, printf@path/filepath, printf@reflect, printf@strconv, printf@strings, printf@text/template"
2020-02-14T17:48:02.8162048Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@encoding/base64, printf@encoding/json, printf@fmt, [email protected]/docker/cli/cli/config, [email protected]/docker/cli/cli/config/configfile, [email protected]/docker/cli/cli/context, [email protected]/docker/cli/cli/context/docker, [email protected]/docker/cli/cli/context/store, [email protected]/docker/cli/cli/debug, [email protected]/docker/cli/cli/flags, [email protected]/docker/cli/cli/manifest/store, [email protected]/docker/cli/cli/registry/client, [email protected]/docker/cli/cli/streams, [email protected]/docker/cli/cli/trust, [email protected]/docker/cli/internal/containerizedengine, [email protected]/docker/cli/opts, [email protected]/docker/cli/types, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/filters, [email protected]/docker/docker/api/types/registry, [email protected]/docker/docker/client, [email protected]/docker/docker/pkg/system, [email protected]/docker/docker/pkg/term, [email protected]/docker/docker/registry, [email protected]/docker/go-connections/tlsconfig, [email protected]/pkg/errors, [email protected]/sirupsen/logrus, [email protected]/spf13/cobra, [email protected]/spf13/pflag, [email protected]/theupdateframework/notary, [email protected]/theupdateframework/notary/client, [email protected]/theupdateframework/notary/passphrase, printf@io/ioutil, printf@path/filepath, printf@strconv, printf@strings"
2020-02-14T17:48:02.8162507Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, printf@reflect, printf@strconv"
2020-02-14T17:48:02.8162729Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@database/sql/driver, printf@encoding/binary"
2020-02-14T17:48:02.8163037Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, printf@bufio, printf@fmt, [email protected]/docker/cli/cli/command, [email protected]/docker/cli/cli/flags, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/client, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/registry, [email protected]/oklog/ulid, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@path, printf@path/filepath, printf@strings"
2020-02-14T17:48:02.8163390Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@crypto, printf@crypto/md5, printf@crypto/rsa, printf@crypto/sha256, printf@crypto/sha512, printf@crypto/x509, printf@encoding/hex, printf@encoding/json, printf@encoding/pem, printf@fmt, printf@io/ioutil, printf@os/exec, printf@path, printf@path/filepath, printf@reflect, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8164275Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/go/canonical/json, [email protected]/in-toto/in-toto-golang/in_toto, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@path/filepath, printf@regexp, printf@strings"
2020-02-14T17:48:02.8164716Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/hex, printf@encoding/json, printf@fmt, [email protected]/cnabio/signy/pkg/cnab, [email protected]/cnabio/signy/pkg/docker, [email protected]/cnabio/signy/pkg/intoto, [email protected]/cnabio/signy/pkg/tuf, [email protected]/sirupsen/logrus, printf@io/ioutil, printf@path/filepath"
2020-02-14T17:48:02.8165329Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@encoding/hex, printf@fmt, [email protected]/cnabio/signy/pkg/cnab, [email protected]/cnabio/signy/pkg/intoto, [email protected]/cnabio/signy/pkg/trust, [email protected]/cnabio/signy/pkg/tuf, [email protected]/docker/go/canonical/json, [email protected]/sirupsen/logrus, [email protected]/spf13/cobra, printf@path/filepath"
2020-02-14T17:48:02.8165605Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/hex, printf@fmt, printf@reflect, printf@regexp, printf@strconv, printf@strings"
2020-02-14T17:48:02.8165843Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@fmt, printf@strings"
2020-02-14T17:48:02.8166074Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@encoding/base64, printf@fmt, printf@reflect, printf@regexp, printf@strconv, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8166335Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@crypto/tls, printf@crypto/x509, printf@flag, printf@fmt, printf@io/ioutil, printf@log, printf@net/http, printf@net/http/internal, printf@strconv, printf@strings, printf@vendor/golang.org/x/net/http/httpguts"
2020-02-14T17:48:02.8167187Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bufio, printf@bytes, printf@encoding/json, printf@fmt, [email protected]/davecgh/go-spew/spew, [email protected]/pmezard/go-difflib/difflib, [email protected]/yaml.v2, printf@net/http, printf@net/http/httptest, printf@net/url, printf@reflect, printf@regexp, printf@strings, printf@unicode/utf8"
2020-02-14T17:48:02.8167451Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt"
2020-02-14T17:48:02.8167678Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@bytes, printf@flag, printf@fmt, printf@runtime/debug, printf@runtime/trace, printf@strconv, printf@strings"
2020-02-14T17:48:02.8167985Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@archive/tar, printf@bufio, printf@fmt, [email protected]/docker/cli/cli/command, [email protected]/docker/cli/cli/flags, [email protected]/docker/distribution/reference, [email protected]/docker/docker/api/types, [email protected]/docker/docker/api/types/container, [email protected]/docker/docker/client, [email protected]/docker/docker/pkg/jsonmessage, [email protected]/docker/docker/registry, [email protected]/oklog/ulid, [email protected]/sirupsen/logrus, [email protected]/stretchr/testify/assert, printf@io/ioutil, printf@path, printf@path/filepath, printf@strings, printf@testing"
2020-02-14T17:48:02.8168793Z level=warning msg="[runner/govet] govet error: printf: failed prerequisites: printf@fmt, [email protected]/docker/go/canonical/json, [email protected]/in-toto/in-toto-golang/in_toto, [email protected]/sirupsen/logrus, [email protected]/stretchr/testify/assert, printf@io/ioutil, printf@path/filepath, printf@regexp, printf@strings, printf@testing"
2020-02-14T17:48:02.8169034Z level=warning msg="[runner/govet] govet error: shift: analysis skipped due to errors in package"
2020-02-14T17:48:02.8169359Z level=warning msg="[runner/govet] govet error: shift: analysis skipped due to errors in package"
2020-02-14T17:48:02.8169565Z level=warning msg="[runner/govet] govet error: shift: analysis skipped due to errors in package"
2020-02-14T17:48:02.8170197Z level=warning msg="[runner/govet] govet error: shift: analysis skipped due to errors in package"
2020-02-14T17:48:02.8170506Z level=warning msg="[runner/govet] govet error: shift: analysis skipped due to errors in package"
2020-02-14T17:48:02.8170718Z level=warning msg="[runner/govet] govet error: shift: analysis skipped due to errors in package"
2020-02-14T17:48:02.8170913Z level=warning msg="[runner/govet] govet error: stdmethods: analysis skipped due to errors in package"
2020-02-14T17:48:02.8171128Z level=warning msg="[runner/govet] govet error: stdmethods: analysis skipped due to errors in package"
2020-02-14T17:48:02.8171341Z level=warning msg="[runner/govet] govet error: stdmethods: analysis skipped due to errors in package"
2020-02-14T17:48:02.8171559Z level=warning msg="[runner/govet] govet error: stdmethods: analysis skipped due to errors in package"
2020-02-14T17:48:02.8171768Z level=warning msg="[runner/govet] govet error: stdmethods: analysis skipped due to errors in package"
2020-02-14T17:48:02.8171962Z level=warning msg="[runner/govet] govet error: stdmethods: analysis skipped due to errors in package"
2020-02-14T17:48:02.8172170Z level=warning msg="[runner/govet] govet error: tests: analysis skipped due to errors in package"
2020-02-14T17:48:02.8172369Z level=warning msg="[runner/govet] govet error: tests: analysis skipped due to errors in package"
2020-02-14T17:48:02.8172569Z level=warning msg="[runner/govet] govet error: tests: analysis skipped due to errors in package"
2020-02-14T17:48:02.8172770Z level=warning msg="[runner/govet] govet error: tests: analysis skipped due to errors in package"
2020-02-14T17:48:02.8172951Z level=warning msg="[runner/govet] govet error: tests: analysis skipped due to errors in package"
2020-02-14T17:48:02.8173156Z level=warning msg="[runner/govet] govet error: tests: analysis skipped due to errors in package"
2020-02-14T17:48:02.8173365Z level=warning msg="[runner/govet] govet error: unmarshal: analysis skipped due to errors in package"
2020-02-14T17:48:02.8173972Z level=warning msg="[runner/govet] govet error: unmarshal: analysis skipped due to errors in package"
2020-02-14T17:48:02.8174214Z level=warning msg="[runner/govet] govet error: unmarshal: analysis skipped due to errors in package"
2020-02-14T17:48:02.8174411Z level=warning msg="[runner/govet] govet error: unmarshal: analysis skipped due to errors in package"
2020-02-14T17:48:02.8174617Z level=warning msg="[runner/govet] govet error: unmarshal: analysis skipped due to errors in package"
2020-02-14T17:48:02.8174823Z level=warning msg="[runner/govet] govet error: unmarshal: analysis skipped due to errors in package"
2020-02-14T17:48:02.8175028Z level=warning msg="[runner/govet] govet error: unsafeptr: analysis skipped due to errors in package"
2020-02-14T17:48:02.8175224Z level=warning msg="[runner/govet] govet error: unsafeptr: analysis skipped due to errors in package"
2020-02-14T17:48:02.8175432Z level=warning msg="[runner/govet] govet error: unsafeptr: analysis skipped due to errors in package"
2020-02-14T17:48:02.8175635Z level=warning msg="[runner/govet] govet error: unsafeptr: analysis skipped due to errors in package"
2020-02-14T17:48:02.8175844Z level=warning msg="[runner/govet] govet error: unsafeptr: analysis skipped due to errors in package"
2020-02-14T17:48:02.8176045Z level=warning msg="[runner/govet] govet error: unsafeptr: analysis skipped due to errors in package"
2020-02-14T17:48:02.8176239Z level=warning msg="[runner/govet] govet error: unusedresult: analysis skipped due to errors in package"
2020-02-14T17:48:02.8176454Z level=warning msg="[runner/govet] govet error: unusedresult: analysis skipped due to errors in package"
2020-02-14T17:48:02.8176658Z level=warning msg="[runner/govet] govet error: unusedresult: analysis skipped due to errors in package"
2020-02-14T17:48:02.8176984Z level=warning msg="[runner/govet] govet error: unusedresult: analysis skipped due to errors in package"
2020-02-14T17:48:02.8177187Z level=warning msg="[runner/govet] govet error: unusedresult: analysis skipped due to errors in package"
2020-02-14T17:48:02.8177377Z level=warning msg="[runner/govet] govet error: unusedresult: analysis skipped due to errors in package"
2020-02-14T17:48:02.8177639Z level=warning msg="[runner/govet] govet error: buildssa: analysis skipped due to errors in package"
2020-02-14T17:48:02.8177861Z level=warning msg="[runner/govet] govet error: nilness: failed prerequisites: [email protected]/cnabio/signy/pkg/cnab"
2020-02-14T17:48:02.8178072Z level=warning msg="[runner/govet] govet error: buildssa: analysis skipped due to errors in package"
2020-02-14T17:48:02.8178284Z level=warning msg="[runner/govet] govet error: nilness: failed prerequisites: [email protected]/cnabio/signy/pkg/tuf"
2020-02-14T17:48:02.8178481Z level=warning msg="[runner/govet] govet error: buildssa: analysis skipped due to errors in package"
2020-02-14T17:48:02.8178697Z level=warning msg="[runner/govet] govet error: nilness: failed prerequisites: [email protected]/cnabio/signy/pkg/trust"
2020-02-14T17:48:02.8178911Z level=warning msg="[runner/govet] govet error: buildssa: analysis skipped due to errors in package"
2020-02-14T17:48:02.8179127Z level=warning msg="[runner/govet] govet error: nilness: failed prerequisites: [email protected]/cnabio/signy/cmd"
2020-02-14T17:48:02.8179334Z level=warning msg="[runner/govet] govet error: buildssa: analysis skipped due to errors in package"
2020-02-14T17:48:02.8179539Z level=warning msg="[runner/govet] govet error: nilness: failed prerequisites: [email protected]/cnabio/signy/pkg/docker [github.com/cnabio/signy/pkg/docker.test]"
2020-02-14T17:48:02.8179757Z level=warning msg="[runner/govet] govet error: buildssa: analysis skipped due to errors in package"
2020-02-14T17:48:02.8179977Z level=warning msg="[runner/govet] govet error: nilness: failed prerequisites: [email protected]/cnabio/signy/pkg/intoto [github.com/cnabio/signy/pkg/intoto.test]"
2020-02-14T17:48:02.8211003Z level=warning msg="[runner] Can't run linter govet: asmdecl: analysis skipped due to errors in package"
2020-02-14T17:48:02.9152382Z Cleaning up orphan processes

Skip login for notary.docker.io if logged into index.docker.io

You currently have to login to both index.docker.io and notary.docker.io when using Docker Hub and Notary, even if technically they share the same authentication.

Users should only login once if the registry comes with a default trust server, and the registry and trust server share authentication.

Expand support to signing other artifact types

Right now, when a file is passed as parameter to signy sign, that parameter is directly passed to the Notary client, which digests the file, signs the digest, then publishes the collection to the trust server.

This project has to showcase how to sign other artifact types - and potentially allow dependents to define how to sign their content - specifically, what are the files that need to be digest for the signature to have meaning for the specific artifact type.

The target file could be an OCI manifest, a plain text file, or a binary file - it is up to implementations to define it, but this project should showcase how to achieve that.

Read flags from environment variables

One potential workaround to the current issue with having to pass too many flags on the command line is to read them similarly to how we read the passphrases for the signing keys - from the command line.

List command broken for local registries

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 sign testdata/cnab/bundle.json localhost:5000/thin-bundle:v1
INFO[0000] Starting to copy image cnab/helloworld:0.1.1 
INFO[0002] Completed image cnab/helloworld:0.1.1 copy   
INFO[0002] Generated relocation map: relocation.ImageRelocationMap{"cnab/helloworld:0.1.1":"localhost:5000/thin-bundle@sha256:a59a4e74d9cc89e4e75dfb2cc7ea5c108e4236ba6231b53081a9e2506d1197b6"} 
INFO[0002] Pushed successfully, with digest "sha256:b4936e42304c184bafc9b06dde9ea1f979129e09a021a8f40abc07f736de9268" 
INFO[0002] Pushed trust data for localhost:5000/thin-bundle:v1: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 verify localhost:5000/thin-bundle:v1
INFO[0000] Pulled trust data for localhost:5000/thin-bundle:v1, with role targets - SHA256: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 
INFO[0000] Pulling bundle from registry: localhost:5000/thin-bundle:v1 
INFO[0000] Computed SHA: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5 
INFO[0000] The SHA sums are equal: c7e92bd51f059d60b15ad456edf194648997d739f60799b37e08edafd88a81b5

$ signy --tlscacert=$NOTARY_CA --server https://localhost:4443 list localhost:5000/helloworld-thin-bundle   
Error: cannot list targets:localhost:4443 does not have trust data for localhost:5000/helloworld-thin-bundle

Allow users to BYOK

Description

signy should allow users to bring their own keys (BYOK).

Current behavior

signy assumes users will always push timestamp and snapshot to the Notary signers, and that users will reuse a single pair of root and targets keys across bundles.

Expected behaviour

signy should be flexible enough to allow users to override the above default behaviour by specifying their own keys to use.

Implement the signing workflow

The purpose of this project is to implement the TUF workflow for content trust - one of the steps is signing an artifact.

For the purpose of this issue, we will limit the discussion to signing a plain file, whose content digest can be directly calculated by the client alone (as opposed to most artifacts that are pushed to an OCI registry, where the calculated digest is that of the resulting manifest file) - however, signing the content digest of an OCI manifest should be straightforward for an project that implements pushing the artifact to the OCI registry, and has access to the resulting manifest file.

Let's look at two projects using the TUF specification, both of them using the Notary client libraries - the Notary client itself, and the Docker CLI:

  • the Notary client splits this action into three steps:

    • initializing a local trusted collection - notary init - this is also the step where keys and passphrases for keys are generated.
    • adding a file as target for the collection - notary add
    • pushing the collection to the trust server - notary publish
  • the Docker CLI implements this as a single command, docker trust sign, which:

    • (clears the changelist)
    • checks if the referenced image exists locally
    • creates the signer based on the user that is logged in
    • initializes a new trust collection based on the image reference and signer
    • keys and passphrases for the keys are generated
    • a new target is created for the specific image tag
    • the changes are published to the remote server
      (Another interesting command to look at is docker push, with content trust enabled, which first pushes the image to the registry, then uses the image digest to initialize a trusted collection, generate keys, add the target for the pushed tag, then publish the target to the trust server).

This issue tracks the implementation of signing and publishing targets.

Signing and pushing images referenced in a CNAB bundle

Currently for CNAB bundles:

  • the bundle definition is signed and pushed
  • the images referenced are copied to the new repository using cnab-to-oci - if any image referenced in the bundle hasn't been pushed to a registry, this step will not push it.

Should there be a flag to also push the images and their trust metadata?

Scenarios for handling the trust collections:

  • one per bundle, with each component tagged (similar to how cnab-to-oci pushes an OCI index in the same repository)
  • similar to how pivotal/image-relocation does the name mapping, in separate repositories.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.