Skip to content

Commit

Permalink
upgrade ci plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Aug 16, 2023
1 parent d95df04 commit 0271f04
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

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

- name: Setup Java (zulu@11)
id: setup-java-zulu-11
Expand All @@ -62,7 +62,7 @@ jobs:

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

- name: Setup Java (zulu@17)
id: setup-java-zulu-17
Expand All @@ -75,7 +75,7 @@ jobs:

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

- name: Check that workflows are up to date
run: sbt -J-Xmx2G githubWorkflowCheck
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:

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

- name: Setup Java (zulu@11)
id: setup-java-zulu-11
Expand All @@ -136,7 +136,7 @@ jobs:

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

- name: Setup Java (zulu@17)
id: setup-java-zulu-17
Expand All @@ -149,7 +149,7 @@ jobs:

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

- name: Download target directories (2.11)
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.2")

addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-RC2")
addSbtPlugin("org.typelevel" % "sbt-typelevel-sonatype-ci-release" % "0.5.0-RC12")

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

Expand Down

0 comments on commit 0271f04

Please sign in to comment.