From d2cdab5142db05f3271913b8788d130646147f32 Mon Sep 17 00:00:00 2001 From: Aydin Hassan Date: Tue, 18 Nov 2025 09:29:28 +0100 Subject: [PATCH] Add allow-insecure-versions input to action.yml Add input for allowing insecure versions of Shopware. --- setup-extension/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup-extension/action.yml b/setup-extension/action.yml index 034d01c..3da5c27 100644 --- a/setup-extension/action.yml +++ b/setup-extension/action.yml @@ -107,6 +107,11 @@ inputs: required: false default: "false" + allow-insecure-versions: + description: This allows installing older versions of shopware with known vulnerabilities (e.g. for testing updates) + required: false + default: "false" + runs: using: "composite" steps: @@ -134,6 +139,7 @@ runs: install-storefront: ${{ inputs.install-storefront }} skip-js-build: ${{ inputs.skip-js-build }} keep-composer-tools: ${{ inputs.keep-composer-tools }} + allow-insecure-versions: ${{ inputs.allow-insecure-versions }} env: ${{ inputs.env }} - name: Clone Extension