Skip to content

Commit e99c301

Browse files
derrickburnsclaude
andcommitted
fix(ci): correct sbt/setup-sbt SHA to v1.1.14
The previous SHA (c53b681) was incorrect and not found in the repository. Updated to use the correct commit SHA for sbt/setup-sbt v1.1.14: 7106bdca9eae3f592a8baeccf57b5a3e06c0de5f Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 26050ed commit e99c301

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
distribution: temurin
3232
java-version: ${{ env.JAVA_VERSION }}
3333
cache: sbt
34-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
34+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
3535
- name: Check Style
3636
run: sbt ++${{ env.SCALA_213 }} scalastyle
3737

@@ -47,7 +47,7 @@ jobs:
4747
distribution: temurin
4848
java-version: ${{ env.JAVA_VERSION }}
4949
cache: sbt
50-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
50+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
5151
- name: Package 2.12 (Spark ${{ env.DEFAULT_SPARK }})
5252
run: sbt ++${{ env.SCALA_212 }} -Dspark.version=${{ env.DEFAULT_SPARK }} clean package
5353
- name: Package 2.13 (Spark ${{ env.DEFAULT_SPARK }})
@@ -78,7 +78,7 @@ jobs:
7878
distribution: temurin
7979
java-version: ${{ env.JAVA_VERSION }}
8080
cache: sbt
81-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
81+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
8282
- name: Run tests
8383
run: sbt ++${{ matrix.scala }} -Dspark.version=${{ matrix.spark }} test
8484

@@ -94,7 +94,7 @@ jobs:
9494
distribution: temurin
9595
java-version: ${{ env.JAVA_VERSION }}
9696
cache: sbt
97-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
97+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
9898
- name: Download JARs
9999
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
100100
with:
@@ -123,7 +123,7 @@ jobs:
123123
distribution: temurin
124124
java-version: ${{ env.JAVA_VERSION }}
125125
cache: sbt
126-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
126+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
127127
- name: Download JARs
128128
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
129129
with:
@@ -155,7 +155,7 @@ jobs:
155155
distribution: temurin
156156
java-version: ${{ env.JAVA_VERSION }}
157157
cache: sbt
158-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
158+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
159159
- name: Download JARs
160160
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
161161
with:
@@ -189,7 +189,7 @@ jobs:
189189
distribution: temurin
190190
java-version: ${{ env.JAVA_VERSION }}
191191
cache: sbt
192-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
192+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
193193
- name: Download JARs
194194
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
195195
with:
@@ -217,7 +217,7 @@ jobs:
217217
distribution: temurin
218218
java-version: ${{ env.JAVA_VERSION }}
219219
cache: sbt
220-
- uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
220+
- uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
221221
- name: Run coverage
222222
run: sbt ++${{ env.SCALA_213 }} clean coverage test coverageReport
223223
- name: Upload coverage to Codecov

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
cache: 'sbt'
3838

3939
- name: Set up SBT
40-
uses: sbt/setup-sbt@c53b681797b9dd5dbbb68a48b5c37e532c092a57 # v1.0.2
40+
uses: sbt/setup-sbt@7106bdca9eae3f592a8baeccf57b5a3e06c0de5f # v1.1.14
4141

4242
# Initializes the CodeQL tools for scanning
4343
- name: Initialize CodeQL

0 commit comments

Comments
 (0)