Commit 40065b4a authored by Girija Saint Ange's avatar Girija Saint Ange
Browse files

fix: Suffix version for go install command

parent 0e6309e3
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 install github.com/jstemmer/go-junit-report
    go install github.com/jstemmer/go-junit-report@latest
    cd -
  }

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