35233d9669
Some checks failed
automerge / automerge (pull_request) Has been skipped
dependabot-automerge / automerge (pull_request) Has been skipped
autoapprove / autoapprove (pull_request) Successful in 5s
lint / lint (pull_request) Successful in 1m13s
test / test (pull_request) Has been cancelled
14 lines
329 B
Bash
Executable File
14 lines
329 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
export PATH=$PATH:$(pwd)/bin
|
|
export GO111MODULE=on
|
|
export GOBIN=$(pwd)/bin
|
|
|
|
#go get github.com/rvflash/goup@v0.4.1
|
|
|
|
#goup -v ./...
|
|
#go get github.com/psampaz/go-mod-outdated@v0.6.0
|
|
go list -u -m -mod=mod -json all | go-mod-outdated -update -direct -ci || true
|
|
|
|
#go list -u -m -json all | go-mod-outdated -update
|