Skip to content

Commit b68d08a

Browse files
committed
Fix CI - add missing sbt/setup-sbt step
1 parent 6732297 commit b68d08a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/build-sdk.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
universal-digest:
2525
description: The SHA256 of the uploaded artifact (universal)
2626
value : ${{ jobs.build.outputs.universal-digest }}
27-
27+
2828

2929
jobs:
3030
build:
@@ -40,7 +40,7 @@ jobs:
4040
distribution: temurin
4141
java-version: ${{ inputs.java-version }}
4242
cache : sbt
43-
43+
- uses: sbt/setup-sbt@v1
4444
- name: Build and pack the SDK (universal)
4545
run : ./project/scripts/sbt dist/pack
4646

@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
path: ./dist/target/pack/*
5252
name: scala3-universal
53-
53+
5454
- name: Compute SHA256 of the uploaded artifact (universal)
5555
id : universal-digest
5656
run : |

.github/workflows/dependency-graph.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12+
- uses: sbt/setup-sbt@v1
1213
- uses: scalacenter/sbt-dependency-submission@v3

.github/workflows/language-reference.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
distribution: 'temurin'
3737
java-version: 17
3838
cache: 'sbt'
39+
- uses: sbt/setup-sbt@v1
3940

4041
- name: Generate reference documentation and test links
4142
run: |

.github/workflows/scaladoc.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
build:
1717
env:
18-
AZURE_STORAGE_SAS_TOKEN: ${{ secrets.AZURE_STORAGE_SAS_TOKEN }}
18+
AZURE_STORAGE_SAS_TOKEN: ${{ secrets.AZURE_STORAGE_SAS_TOKEN }}m
1919
runs-on: ubuntu-latest
2020
if: "github.event_name == 'merge_group'
2121
|| ( github.event_name == 'pull_request'
@@ -36,6 +36,7 @@ jobs:
3636
java-version: 17
3737
cache: 'sbt'
3838

39+
- uses: sbt/setup-sbt@v1
3940
- name: Compile and test scala3doc-js
4041
run: ./project/scripts/sbt scaladoc-js-main/test
4142

0 commit comments

Comments
 (0)