From 16277427e686c2564ec9a7cc0cc9b8bd11dd5876 Mon Sep 17 00:00:00 2001 From: not-matthias Date: Wed, 8 Jul 2026 18:09:42 +0200 Subject: [PATCH] feat: support unpinned: prefix for runner-version --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index a9ceeb7..7aa9ebe 100644 --- a/action.yml +++ b/action.yml @@ -106,6 +106,9 @@ runs: VERSION_TYPE="latest" elif echo "$RUNNER_VERSION" | grep -qE '^[0-9]+\.[0-9]+\.[0-9]+-'; then VERSION_TYPE="prerelease" + elif echo "$RUNNER_VERSION" | grep -q '^unpinned:'; then + VERSION_TYPE="prerelease" + RUNNER_VERSION=$(echo "$RUNNER_VERSION" | sed 's/^unpinned://') elif echo "$RUNNER_VERSION" | grep -qE '^[0-9]+\.[0-9]+\.[0-9]+'; then VERSION_TYPE="release" elif echo "$RUNNER_VERSION" | grep -q '^branch:'; then