From 0e75c7083267a33b013b6f7593c0f783fd4968d8 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 22 Jun 2026 03:47:33 -0700 Subject: [PATCH] Use locked versions for related repo CI clones --- .github/scripts/clone_abx_repo.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/scripts/clone_abx_repo.sh b/.github/scripts/clone_abx_repo.sh index 832b33d4..01908e03 100755 --- a/.github/scripts/clone_abx_repo.sh +++ b/.github/scripts/clone_abx_repo.sh @@ -4,14 +4,6 @@ set -Eeuo pipefail repo_name="$1" target_dir="${2:-$repo_name}" -case "$repo_name" in - abxpkg) - version="1.11.230" - ;; - abx-plugins) - version="1.11.243" - ;; - *) version="$( python3 - "$repo_name" <<'PY' import re @@ -30,8 +22,6 @@ if not match: print(match.group(1)) PY )" - ;; -esac echo "Cloning ArchiveBox/${repo_name}@v${version} into ${target_dir}" git clone --depth=1 --branch "v${version}" "https://github.com/ArchiveBox/${repo_name}.git" "$target_dir"