File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 38
38
runs-on : ${{ matrix.os }}
39
39
timeout-minutes : 60
40
40
steps :
41
+ - name : Install sbt
42
+ uses : sbt/setup-sbt@v1
43
+
41
44
- name : Checkout current branch (full)
42
45
uses : actions/checkout@v4
43
46
with :
@@ -112,6 +115,9 @@ jobs:
112
115
java : [temurin@17]
113
116
runs-on : ${{ matrix.os }}
114
117
steps :
118
+ - name : Install sbt
119
+ uses : sbt/setup-sbt@v1
120
+
115
121
- name : Checkout current branch (full)
116
122
uses : actions/checkout@v4
117
123
with :
@@ -199,13 +205,16 @@ jobs:
199
205
200
206
dependency-submission :
201
207
name : Submit Dependencies
202
- if : github.event_name != 'pull_request'
208
+ if : github.event.repository.fork == false && github. event_name != 'pull_request'
203
209
strategy :
204
210
matrix :
205
211
os : [ubuntu-latest]
206
212
java : [temurin@17]
207
213
runs-on : ${{ matrix.os }}
208
214
steps :
215
+ - name : Install sbt
216
+ uses : sbt/setup-sbt@v1
217
+
209
218
- name : Checkout current branch (full)
210
219
uses : actions/checkout@v4
211
220
with :
You can’t perform that action at this time.
0 commit comments