From 4072425e015d2801533baff9cc267fbf0943e273 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Mon, 9 Dec 2024 10:28:06 +0100 Subject: [PATCH] Github Actions: allow configuring java versions on workflow dispatch --- .github/workflows/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd16bdb63d..68980da6d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,6 +15,15 @@ on: - '**' # thus ignoring tagging pull_request: workflow_dispatch: + inputs: + LUCEE_TEST_JAVA_VERSION: + description: Optional, otherwise, the build java version is used + required: false + type: string + LUCEE_BUILD_JAVA_VERSION: + required: true + type: string + default: '21' #concurrency: # group: ${{ github.head_ref }}