From ab2348848c8c3126694d3f88a7979108445b100d Mon Sep 17 00:00:00 2001 From: github actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 09:46:02 +0000 Subject: [PATCH] update default sbt version to 1.10.3 --- action.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/action.yml b/action.yml index 7beafd9..3e37ded 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,6 @@ inputs: default: 1.10.3 runs: using: "composite" - steps: - name: Set up cache paths id: cache-paths @@ -15,7 +14,6 @@ runs: run: | echo "sbt_toolpath=$RUNNER_TOOL_CACHE/sbt/${{ inputs.sbt-runner-version }}" >> "$GITHUB_OUTPUT" echo "sbt_downloadpath=$RUNNER_TEMP/_sbt" >> "$GITHUB_OUTPUT" - - name: Check Tool Cache id: cache-tool-dir shell: bash @@ -26,7 +24,6 @@ runs: else echo "cache-hit=false" >> "$GITHUB_OUTPUT" fi - - name: Cache sbt distribution id: cache-dir if: steps.cache-tool-dir.outputs.cache-hit != 'true' @@ -34,7 +31,6 @@ runs: with: path: ${{ steps.cache-paths.outputs.sbt_toolpath }} key: ${{ runner.os }}-sbt-${{ inputs.sbt-runner-version }}-1.1.4 - - name: "Download and Install sbt" shell: bash env: @@ -48,7 +44,6 @@ runs: pushd "${{ steps.cache-paths.outputs.sbt_downloadpath }}" unzip -o "sbt-${{ inputs.sbt-runner-version }}.zip" -d "${{ steps.cache-paths.outputs.sbt_toolpath }}" popd - - name: "Setup PATH" shell: bash run: |