From 4f78735db79e7f3782640ac94cda37a715fb25c8 Mon Sep 17 00:00:00 2001 From: Peter L Jones Date: Sun, 9 Aug 2026 16:26:04 +0100 Subject: [PATCH] Fixes 3880: Bump Dependencies retrieved empty jom version --- .github/workflows/bump-dependencies.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-dependencies.yml b/.github/workflows/bump-dependencies.yml index 2cb12fe315..a59eca3398 100644 --- a/.github/workflows/bump-dependencies.yml +++ b/.github/workflows/bump-dependencies.yml @@ -61,8 +61,8 @@ jobs: - name: choco-jom # not Changelog-worthy get_upstream_version: | - curl -s -o /dev/null --location --range 0-5 --write-out '%{url_effective}' https://community.chocolatey.org/api/v2/package/jom/ | - grep -oP 'jom\.\K.*(?=\.nupkg)' + curl -sL "https://community.chocolatey.org/api/v2/FindPackagesById()?id='jom'" | + grep -oP '(?<=)[^<]+' | sort --version-sort | tail -n1 local_version_regex: (.*JomVersion\s*=\s*"?)([0-9.]+)("?.*) - name: NSIS