Skip to content

Commit d23f8ba

Browse files
committed
upgrade ci plugin
1 parent c341a6d commit d23f8ba

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: sbt update
5151
if: matrix.java == 'zulu@8' && steps.setup-java-zulu-8.outputs.cache-hit == 'false'
52-
run: sbt '++ ${{ matrix.scala }}' reload +update
52+
run: sbt +update
5353

5454
- name: Setup Java (zulu@11)
5555
id: setup-java-zulu-11
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: sbt update
6464
if: matrix.java == 'zulu@11' && steps.setup-java-zulu-11.outputs.cache-hit == 'false'
65-
run: sbt '++ ${{ matrix.scala }}' reload +update
65+
run: sbt +update
6666

6767
- name: Setup Java (zulu@17)
6868
id: setup-java-zulu-17
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: sbt update
7777
if: matrix.java == 'zulu@17' && steps.setup-java-zulu-17.outputs.cache-hit == 'false'
78-
run: sbt '++ ${{ matrix.scala }}' reload +update
78+
run: sbt +update
7979

8080
- name: Check that workflows are up to date
8181
run: sbt githubWorkflowCheck
@@ -123,7 +123,7 @@ jobs:
123123

124124
- name: sbt update
125125
if: matrix.java == 'zulu@8' && steps.setup-java-zulu-8.outputs.cache-hit == 'false'
126-
run: sbt reload +update
126+
run: sbt +update
127127

128128
- name: Setup Java (zulu@11)
129129
id: setup-java-zulu-11
@@ -136,7 +136,7 @@ jobs:
136136

137137
- name: sbt update
138138
if: matrix.java == 'zulu@11' && steps.setup-java-zulu-11.outputs.cache-hit == 'false'
139-
run: sbt reload +update
139+
run: sbt +update
140140

141141
- name: Setup Java (zulu@17)
142142
id: setup-java-zulu-17
@@ -149,7 +149,7 @@ jobs:
149149

150150
- name: sbt update
151151
if: matrix.java == 'zulu@17' && steps.setup-java-zulu-17.outputs.cache-hit == 'false'
152-
run: sbt reload +update
152+
run: sbt +update
153153

154154
- name: Download target directories (2.13)
155155
uses: actions/download-artifact@v3

project/build.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
sbt.version=1.9.2
1+
sbt.version=1.9.3
2+

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
22

3-
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-RC5")
3+
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-RC12")
44

55
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
66

0 commit comments

Comments
 (0)