From 82f6bd7728d5ddb9df80e0d5a18c638ec67eb7fe Mon Sep 17 00:00:00 2001 From: Austin DeNoble Date: Thu, 9 May 2024 16:49:33 -0400 Subject: [PATCH] Use correct input for `gradle-version` (#125) ## Problem I didn't use `inputs.gradle-version` I used `inputs.java-version`. ## Solution Use the correct version. ## Type of Change - [X] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [X] Infrastructure change (CI configs, etc) - [ ] Non-code change (docs, etc) - [ ] None of the above: (explain here) ## Test Plan Describe specific steps for validating this change. --- .github/actions/build-docs/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 46de164b..30b7cb52 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -20,7 +20,7 @@ runs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v3 with: - gradle-version: ${{ inputs.java-version }} + gradle-version: ${{ inputs.gradle-version }} - name: Build Javadoc documentation shell: bash run: |