From e009e3c2fa897b486fa60ccdd1f9b925b222338b Mon Sep 17 00:00:00 2001 From: jlanson Date: Tue, 7 Jan 2025 16:20:05 -0500 Subject: [PATCH] fix: bump hipcheck version to current in various non-software locations Signed-off-by: jlanson --- dist/Containerfile | 2 +- site/config.toml | 2 +- site/static/dl/install.ps1 | 2 +- site/static/dl/install.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/Containerfile b/dist/Containerfile index b24cac2c..e585e3f3 100644 --- a/dist/Containerfile +++ b/dist/Containerfile @@ -2,7 +2,7 @@ FROM node:bookworm-slim -ARG HC_VERSION="3.7.0" +ARG HC_VERSION="3.9.0" WORKDIR /app diff --git a/site/config.toml b/site/config.toml index 405e88f0..d9b06c47 100644 --- a/site/config.toml +++ b/site/config.toml @@ -59,7 +59,7 @@ footer = [ { name = "Release Notes", url = "https://github.com/mitre/hipcheck/releases", external = true }, { name = "Changelog", url = "https://github.com/mitre/hipcheck/blob/main/CHANGELOG.md", external = true }, { name = "Packages", title = true }, - { name = "Hipcheck", url = "https://github.com/mitre/hipcheck/releases/tag/hipcheck-v3.7.0", external = true }, + { name = "Hipcheck", url = "https://github.com/mitre/hipcheck/releases/tag/hipcheck-v3.9.0", external = true }, { name = "Rust Plugin SDK", url = "https://crates.io/crates/hipcheck-sdk", external = true }, ], [ diff --git a/site/static/dl/install.ps1 b/site/static/dl/install.ps1 index ff748794..b678fb56 100755 --- a/site/static/dl/install.ps1 +++ b/site/static/dl/install.ps1 @@ -2,7 +2,7 @@ # This installer delegates to the "real" installer included with each new # release of Hipcheck. -$hc_version = "3.7.0" +$hc_version = "3.9.0" $repo = "https://github.com/mitre/hipcheck" $installer = "$repo/releases/download/hipcheck-v${hc_version}/hipcheck-installer.ps1" diff --git a/site/static/dl/install.sh b/site/static/dl/install.sh index fcc7cc3e..c7c3efb6 100755 --- a/site/static/dl/install.sh +++ b/site/static/dl/install.sh @@ -3,7 +3,7 @@ # This installer delegates to the "real" installer included with each new # release of Hipcheck. -HC_VERSION="3.7.0" +HC_VERSION="3.9.0" REPO="https://github.com/mitre/hipcheck" INSTALLER="$REPO/releases/download/hipcheck-v$HC_VERSION/hipcheck-installer.sh"