Skip to content

Commit b5b4a98

Browse files
authored
Merge pull request #23 from sbt/update-default-sbt-1.10.3
deps: Update sbt to 1.10.3
2 parents 48a48d7 + ab23488 commit b5b4a98

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

action.yml

-5
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ inputs:
77
default: 1.10.3
88
runs:
99
using: "composite"
10-
1110
steps:
1211
- name: Set up cache paths
1312
id: cache-paths
1413
shell: bash
1514
run: |
1615
echo "sbt_toolpath=$RUNNER_TOOL_CACHE/sbt/${{ inputs.sbt-runner-version }}" >> "$GITHUB_OUTPUT"
1716
echo "sbt_downloadpath=$RUNNER_TEMP/_sbt" >> "$GITHUB_OUTPUT"
18-
1917
- name: Check Tool Cache
2018
id: cache-tool-dir
2119
shell: bash
@@ -26,15 +24,13 @@ runs:
2624
else
2725
echo "cache-hit=false" >> "$GITHUB_OUTPUT"
2826
fi
29-
3027
- name: Cache sbt distribution
3128
id: cache-dir
3229
if: steps.cache-tool-dir.outputs.cache-hit != 'true'
3330
uses: actions/cache@v4
3431
with:
3532
path: ${{ steps.cache-paths.outputs.sbt_toolpath }}
3633
key: ${{ runner.os }}-sbt-${{ inputs.sbt-runner-version }}-1.1.4
37-
3834
- name: "Download and Install sbt"
3935
shell: bash
4036
env:
@@ -48,7 +44,6 @@ runs:
4844
pushd "${{ steps.cache-paths.outputs.sbt_downloadpath }}"
4945
unzip -o "sbt-${{ inputs.sbt-runner-version }}.zip" -d "${{ steps.cache-paths.outputs.sbt_toolpath }}"
5046
popd
51-
5247
- name: "Setup PATH"
5348
shell: bash
5449
run: |

0 commit comments

Comments
 (0)