Commit 91a5c14c authored by Girija Saint Ange's avatar Girija Saint Ange Committed by Pierre Smeyers
Browse files

fix: use go install instead of deprecated go get

parent d88ac115
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ stages:
  function install_go_junit_report() {
    cd "$(mktemp -d)"
    go mod init go-junit-report
    go get github.com/jstemmer/go-junit-report
    go install github.com/jstemmer/go-junit-report
    cd -
  }

@@ -149,7 +149,7 @@ stages:
  function install_go_mod_outdated() {
    cd "$(mktemp -d)"
    go mod init go-mod-outdated
    go get github.com/psampaz/go-mod-outdated
    go install github.com/psampaz/go-mod-outdated
    cd -
  }