Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/actions/setup-environment-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,6 @@ runs:
with:
distribution: 'temurin'
java-version: ${{ inputs.java-version == 'default' && '11' || inputs.java-version }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5
with:
cache-disabled: ${{ inputs.disable-cache }}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The disable-cache input appears to have been primarily used by the Setup Gradle step. Since this step is being removed, the input should also be removed from the inputs section of this composite action to avoid maintaining unused parameters and to keep the action interface clean.

validate-wrappers: false
- name: Install Go
if: ${{ inputs.go-version != '' }}
uses: actions/setup-go@v6
Expand Down
Loading