Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.2.1, 2.12.17, 2.13.10]
scala: [3.2.2, 2.12.17, 2.13.10]
java: [temurin@8, temurin@11]
project: [rootJS, rootJVM, rootNative]
workers: [1, 4]
Expand Down Expand Up @@ -189,32 +189,32 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (3.2.1, rootJS, 1)
- name: Download target directories (3.2.2, rootJS, 1)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootJS-1
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJS-1

- name: Inflate target directories (3.2.1, rootJS, 1)
- name: Inflate target directories (3.2.2, rootJS, 1)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.2.1, rootJVM, 1)
- name: Download target directories (3.2.2, rootJVM, 1)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootJVM-1
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM-1

- name: Inflate target directories (3.2.1, rootJVM, 1)
- name: Inflate target directories (3.2.2, rootJVM, 1)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.2.1, rootNative, 1)
- name: Download target directories (3.2.2, rootNative, 1)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootNative-1
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative-1

- name: Inflate target directories (3.2.1, rootNative, 1)
- name: Inflate target directories (3.2.2, rootNative, 1)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val Scala212 = "2.12.17"
val Scala213 = "2.13.10"
val Scala3 = "3.2.1"
val Scala3 = "3.2.2"

name := "scalacheck"
ThisBuild / organization := "org.scalacheck"
Expand Down