From f67a061b63b4ee47524f09f0375ea1b49b99b6e4 Mon Sep 17 00:00:00 2001 From: finalerock44 <77282157+finalerock44@users.noreply.github.com> Date: Mon, 24 Aug 2026 11:05:04 +0100 Subject: [PATCH] docs: drop iOS 16 from the ios-version option list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit iOS 16 was removed from the platform on 2026-08-24. Description text only — params.ts coerces ios-version to a number and does no enum validation, so the action never rejected 16 itself and does not start now. The API returns the 400. This is so the input documentation stops advertising a value that cannot work. No dist rebuild: action.yml descriptions are read by the runner, not compiled into dist/index.js. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a969957..9a79036 100644 --- a/action.yml +++ b/action.yml @@ -57,7 +57,7 @@ inputs: description: '[iOS only] iOS device to run your flow against ' required: false ios-version: - description: '[iOS only] iOS version to run your flow against ' + description: '[iOS only] iOS version to run your flow against ' required: false maestro-version: description: 'Maestro version to run your flow against'