diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 810d3c7..e585584 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.15, 3.3.3] + scala: [2.13.15, 3.3.4] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -69,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.3] + scala: [3.3.4] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -103,12 +103,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.3) + - name: Download target directories (3.3.4) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }} - - name: Inflate target directories (3.3.3) + - name: Inflate target directories (3.3.4) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 17f6b8b..e3d130f 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.15, zulu@8) - - check-success=Build and Test (ubuntu-latest, 3.3.3, zulu@8) + - check-success=Build and Test (ubuntu-latest, 3.3.4, zulu@8) actions: queue: name: default diff --git a/build.sbt b/build.sbt index 5b21862..9f754d9 100644 --- a/build.sbt +++ b/build.sbt @@ -20,7 +20,7 @@ def myScalacOptions(version: String) = inThisBuild(List( organization := "io.github.nafg.scalajs-facades", - crossScalaVersions := Seq("2.13.15", "3.3.3"), + crossScalaVersions := Seq("2.13.15", "3.3.4"), scalaVersion := (ThisBuild / crossScalaVersions).value.last, scalacOptions ++= myScalacOptions(scalaVersion.value) ))