Skip to content

Commit

Permalink
Build updates
Browse files Browse the repository at this point in the history
  • Loading branch information
durban committed Aug 25, 2023
1 parent 9b7cd2a commit 85f870f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- name: sbt update
if: matrix.java == 'temurin@11' && steps.setup-java-temurin-11.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (temurin@17)
id: setup-java-temurin-17
Expand All @@ -133,7 +133,7 @@ jobs:
- name: sbt update
if: matrix.java == 'temurin@17' && steps.setup-java-temurin-17.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (temurin@20)
id: setup-java-temurin-20
Expand All @@ -147,7 +147,7 @@ jobs:
- name: sbt update
if: matrix.java == 'temurin@20' && steps.setup-java-temurin-20.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup GraalVM (graal_22.3.2@11)
id: setup-graalvm-22_3_2-11
Expand All @@ -161,7 +161,7 @@ jobs:
- name: sbt update
if: matrix.java == 'graal_22.3.2@11' && steps.setup-graalvm-22_3_2-11.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (graalvm@17)
id: setup-java-graalvm-17
Expand All @@ -175,7 +175,7 @@ jobs:
- name: sbt update
if: matrix.java == 'graalvm@17' && steps.setup-java-graalvm-17.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (graalvm@20)
id: setup-java-graalvm-20
Expand All @@ -189,7 +189,7 @@ jobs:
- name: sbt update
if: matrix.java == 'graalvm@20' && steps.setup-java-graalvm-20.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (semeru@11)
id: setup-java-semeru-11
Expand All @@ -203,7 +203,7 @@ jobs:
- name: sbt update
if: matrix.java == 'semeru@11' && steps.setup-java-semeru-11.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (semeru@17)
id: setup-java-semeru-17
Expand All @@ -217,7 +217,7 @@ jobs:
- name: sbt update
if: matrix.java == 'semeru@17' && steps.setup-java-semeru-17.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Setup Java (semeru@20)
id: setup-java-semeru-20
Expand All @@ -231,7 +231,7 @@ jobs:
- name: sbt update
if: matrix.java == 'semeru@20' && steps.setup-java-semeru-20.outputs.cache-hit == 'false'
shell: bash
run: sbt -v '++ ${{ matrix.scala }}' reload +update
run: sbt -v +update

- name: Check that workflows are up to date
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

val sbtTypelevelVersion = "0.5.0-RC6"
val sbtTypelevelVersion = "0.5.0"

addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.5")
addSbtPlugin("pl.project13.scala" % "sbt-jcstress" % "0.2.0")
Expand Down

0 comments on commit 85f870f

Please sign in to comment.