Skip to content

Commit

Permalink
Update scala3-library, ... to 3.4.1 (#107)
Browse files Browse the repository at this point in the history
Co-authored-by: Stan <mail@kovstas.dev>
  • Loading branch information
scala-steward and kovstas committed May 8, 2024
1 parent 2ee4a6b commit e265f6d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
scala: [3.3.3, 2.12.19, 2.13.14]
scala: [3.4.1, 2.12.19, 2.13.14]
java: [temurin@17]
project: [rootJS, root, rootNative]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -133,30 +133,30 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (3.3.3, rootJS)
- name: Download target directories (3.4.1, rootJS)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.4.1-rootJS

- name: Inflate target directories (3.3.3, rootJS)
- name: Inflate target directories (3.4.1, rootJS)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.3, root)
- name: Download target directories (3.4.1, root)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-root
name: target-${{ matrix.os }}-${{ matrix.java }}-3.4.1-root

- name: Inflate target directories (3.3.3, root)
- name: Inflate target directories (3.4.1, root)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.3, rootNative)
- name: Download target directories (3.4.1, rootNative)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-rootNative
name: target-${{ matrix.os }}-${{ matrix.java }}-3.4.1-rootNative

- name: Inflate target directories (3.3.3, rootNative)
- name: Inflate target directories (3.4.1, rootNative)
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,7 +1,7 @@
ThisBuild / organization := "dev.kovstas"

ThisBuild / scalaVersion := "2.13.14"
ThisBuild / crossScalaVersions := List("2.12.19", "2.13.14", "3.3.3")
ThisBuild / crossScalaVersions := List("2.12.19", "2.13.14", "3.4.1")
ThisBuild / scalacOptions ++= scalaOptions(scalaVersion.value)

ThisBuild / libraryDependencies ++= Seq(
Expand Down

0 comments on commit e265f6d

Please sign in to comment.