From a36d6f820b4a304e7062de1e9858390d49dbecc1 Mon Sep 17 00:00:00 2001 From: daz Date: Thu, 4 Jan 2024 13:33:26 -0700 Subject: [PATCH] Remove 'gradle-executable' input param --- .github/workflows/integ-test-execution.yml | 6 ------ action.yml | 5 ----- src/gradlew.ts | 2 +- src/input-params.ts | 4 ---- src/provision.ts | 5 ----- 5 files changed, 1 insertion(+), 21 deletions(-) diff --git a/.github/workflows/integ-test-execution.yml b/.github/workflows/integ-test-execution.yml index a2f982a..45bed64 100644 --- a/.github/workflows/integ-test-execution.yml +++ b/.github/workflows/integ-test-execution.yml @@ -46,12 +46,6 @@ jobs: gradle-version: release-candidate build-root-directory: .github/workflow-samples/no-wrapper arguments: help - - name: Test use defined Gradle executable - uses: ./ - with: - gradle-executable: .github/workflow-samples/groovy-dsl/gradlew${{ matrix.script-suffix }} - build-root-directory: .github/workflow-samples/no-wrapper - arguments: help gradle-versions: strategy: diff --git a/action.yml b/action.yml index d73e0aa..a76489b 100644 --- a/action.yml +++ b/action.yml @@ -88,11 +88,6 @@ inputs: required: false deprecation-message: Using the action to execute Gradle directly is deprecated in favor of using the action to setup Gradle, and executing Gradle in a subsequent Step. See https://github.com/gradle/gradle-build-action?tab=readme-ov-file#use-the-action-to-setup-gradle. - gradle-executable: - description: Path to the Gradle executable. If specified, this executable will be added to the PATH and used for invoking Gradle. - required: false - deprecation-message: Using the action to execute Gradle directly is deprecated in favor of using the action to setup Gradle, and executing Gradle in a subsequent Step. See https://github.com/gradle/gradle-build-action?tab=readme-ov-file#use-the-action-to-setup-gradle. - generate-job-summary: description: When 'false', no Job Summary will be generated for the Job. required: false diff --git a/src/gradlew.ts b/src/gradlew.ts index 40b9bba..591e928 100644 --- a/src/gradlew.ts +++ b/src/gradlew.ts @@ -28,7 +28,7 @@ function validateGradleWrapper(buildRootDirectory: string): void { function verifyExists(file: string, description: string): void { if (!fs.existsSync(file)) { throw new Error( - `Cannot locate ${description} at '${file}'. Specify 'gradle-version' or 'gradle-executable' for projects without Gradle wrapper configured.` + `Cannot locate ${description} at '${file}'. Specify 'gradle-version' for projects without Gradle wrapper configured.` ) } } diff --git a/src/input-params.ts b/src/input-params.ts index ade5d65..62be313 100644 --- a/src/input-params.ts +++ b/src/input-params.ts @@ -49,10 +49,6 @@ export function getGradleVersion(): string { return core.getInput('gradle-version') } -export function getGradleExecutable(): string { - return core.getInput('gradle-executable') -} - export function getArguments(): string[] { const input = core.getInput('arguments') return parseArgsStringToArgv(input) diff --git a/src/provision.ts b/src/provision.ts index 9ff1b16..749e80d 100644 --- a/src/provision.ts +++ b/src/provision.ts @@ -22,11 +22,6 @@ export async function provisionGradle(): Promise { return addToPath(await installGradle(gradleVersion)) } - const gradleExecutable = params.getGradleExecutable() - if (gradleExecutable !== '') { - return addToPath(gradleExecutable) - } - return undefined }