From ec728caeab0aa9bc70b18cd1a74973687d9f276c Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 21 Jun 2026 03:19:45 -0700 Subject: [PATCH] Use fixed abx-plugins tag in CI --- .github/scripts/clone_abx_repo.sh | 7 +++++++ uv.lock | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/scripts/clone_abx_repo.sh b/.github/scripts/clone_abx_repo.sh index 01908e03..1a5e788e 100755 --- a/.github/scripts/clone_abx_repo.sh +++ b/.github/scripts/clone_abx_repo.sh @@ -4,6 +4,11 @@ set -Eeuo pipefail repo_name="$1" target_dir="${2:-$repo_name}" +case "$repo_name" in + abx-plugins) + version="1.11.232" + ;; + *) version="$( python3 - "$repo_name" <<'PY' import re @@ -22,6 +27,8 @@ 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" diff --git a/uv.lock b/uv.lock index a21ac729..402e1a5b 100644 --- a/uv.lock +++ b/uv.lock @@ -46,7 +46,7 @@ wheels = [ [[package]] name = "abx-plugins" -version = "1.11.232" +version = "1.11.231" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "abxbus", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },