diff --git a/latest-versions.sh b/latest-versions.sh index 9f78476..2ea351a 100755 --- a/latest-versions.sh +++ b/latest-versions.sh @@ -16,9 +16,9 @@ AUTH_HEADER="Authorization: token ${GITHUB_TOKEN}" get_latest() { local repo=$1 - local resp=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${repo}/releases/latest") - local tag=$(echo $resp | jq -e --raw-output .tag_name) - local name=$(echo $resp | jq -e --raw-output .name) + local resp=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${repo}/releases") + local tag=$(echo $resp | jq -e --raw-output .[0].tag_name) + local name=$(echo $resp | jq -e --raw-output .[0].name) if [[ "$tag" == "null" ]]; then # get the latest tag @@ -86,7 +86,7 @@ compare() { echo -e "\e[36m${dir}:\e[39m current ${current} | ${tag} | ${name}" else # add to the bad versions - if [[ "$dir" != "rstudio" ]] && [[ "$dir" != "bazel" ]] && [[ "$dir" != "azure-cli-extension-noelbundick" ]]; then + if [[ "$dir" != "rstudio" ]] && [[ "$dir" != "bazel" ]]; then bad_versions+=( "${dir}" ) fi echo -e "\e[31m${dir}:\e[39m current ${current} | ${tag} | ${name} | ${releases}" diff --git a/micro/Dockerfile b/micro/Dockerfile index 99adbc8..1b6f6e0 100644 --- a/micro/Dockerfile +++ b/micro/Dockerfile @@ -4,7 +4,7 @@ LABEL maintainer "Christian Koep " ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV GOPATH /go -ENV MICRO_VERSION v1.4.0 +ENV MICRO_VERSION nightly RUN buildDeps=' \ go \ diff --git a/routersploit/Dockerfile b/routersploit/Dockerfile index 35160f0..552893f 100644 --- a/routersploit/Dockerfile +++ b/routersploit/Dockerfile @@ -1,7 +1,7 @@ FROM debian:sid LABEL maintainer "Christian Koep " -ENV ROUTERSPLOIT_VERSION v3.1.0 +ENV ROUTERSPLOIT_VERSION v3.2.0 RUN apt-get update && apt-get install -y \ git \