Skip to content

Commit

Permalink
Update scala-library to 2.13.14 (#106)
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 293df53 commit 2ee4a6b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 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.13]
scala: [3.3.3, 2.12.19, 2.13.14]
java: [temurin@17]
project: [rootJS, root, rootNative]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-22.04 ]
scala: [ 2.13.13 ]
scala: [ 2.13.14 ]
java: [ temurin@17 ]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -187,30 +187,30 @@ jobs:
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.13, rootJS)
- name: Download target directories (2.13.14, rootJS)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.13-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootJS

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

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

- name: Inflate target directories (2.13.13, rootNative)
- name: Inflate target directories (2.13.14, rootNative)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ThisBuild / organization := "dev.kovstas"

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

ThisBuild / libraryDependencies ++= Seq(
Expand Down

0 comments on commit 2ee4a6b

Please sign in to comment.