From c185a7427dfb6d5b6dca81cbf609a0fab6e9161a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Germann?= Date: Mon, 15 Dec 2025 09:23:06 +0100 Subject: [PATCH] update sources-dist.json url Updated version fetching commands to use a single curl command for each version. --- .github/workflows/version-checks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/version-checks.yml b/.github/workflows/version-checks.yml index 7628327..c08b2bc 100644 --- a/.github/workflows/version-checks.yml +++ b/.github/workflows/version-checks.yml @@ -24,16 +24,16 @@ jobs: - name: Fetch ioBroker and nodejs versions run: | - curl -sL https://repo.iobroker.live/sources-dist.json | \ + curl -sL https://download.iobroker.net/sources-dist.json | \ jq -r '."js-controller".version' > .github/dependencies/.js-controller-version echo "[LOG] Fetched js-controller version is $(cat .github/dependencies/.js-controller-version)" - curl -sL https://repo.iobroker.live/sources-dist.json | \ + curl -sL https://download.iobroker.net/sources-dist.json | \ jq -r '."admin".version' > .github/dependencies/.admin-version echo "[LOG] Fetched admin version is $(cat .github/dependencies/.admin-version)" - curl -sL https://repo.iobroker.live/sources-dist.json | \ + curl -sL https://download.iobroker.net/sources-dist.json | \ jq -r '."backitup".version' > .github/dependencies/.backitup-version echo "[LOG] Fetched backitup version is $(cat .github/dependencies/.backitup-version)" - curl -sL https://repo.iobroker.live/sources-dist.json | \ + curl -sL https://download.iobroker.net/sources-dist.json | \ jq -r '."discovery".version' > .github/dependencies/.discovery-version echo "[LOG] Fetched discovery version is $(cat .github/dependencies/.discovery-version)" curl -sL https://nodejs.org/dist/index.json | \