From 01173824a54d76c7d04cebada87f71aa00e5c445 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 16:09:22 +0000 Subject: [PATCH 1/2] Update scala-library to 3.8.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1295828b..cffcaf89 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ ThisBuild / developers := List( tlGitHubDev("edmundnoble", "Edmund Noble") ) -val Scala213 = "2.13.18" +val Scala213 = "3.8.1" ThisBuild / crossScalaVersions := Seq("3.3.6", "2.12.21", Scala213) ThisBuild / tlVersionIntroduced := Map("3" -> "1.2.1") From 23ca567632a9d312d3a29cb329dee1cac136ac4c Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 16:09:39 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 58 ++++++++++++++++++++-------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ce2b456..f88648fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-22.04] - scala: [3, 2.12, 2.13] + scala: [3.3.6, 2.12.21, 3.8.1] java: [temurin@8] project: [rootJS, rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -127,92 +127,92 @@ jobs: if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' run: sbt +update - - name: Download target directories (3, rootJS) + - name: Download target directories (3.3.6, rootJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.6-rootJS - - name: Inflate target directories (3, rootJS) + - name: Inflate target directories (3.3.6, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3, rootJVM) + - name: Download target directories (3.3.6, rootJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.6-rootJVM - - name: Inflate target directories (3, rootJVM) + - name: Inflate target directories (3.3.6, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3, rootNative) + - name: Download target directories (3.3.6, rootNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.6-rootNative - - name: Inflate target directories (3, rootNative) + - name: Inflate target directories (3.3.6, rootNative) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12, rootJS) + - name: Download target directories (2.12.21, rootJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootJS - - name: Inflate target directories (2.12, rootJS) + - name: Inflate target directories (2.12.21, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12, rootJVM) + - name: Download target directories (2.12.21, rootJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootJVM - - name: Inflate target directories (2.12, rootJVM) + - name: Inflate target directories (2.12.21, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12, rootNative) + - name: Download target directories (2.12.21, rootNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.21-rootNative - - name: Inflate target directories (2.12, rootNative) + - name: Inflate target directories (2.12.21, rootNative) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13, rootJS) + - name: Download target directories (3.8.1, rootJS) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.1-rootJS - - name: Inflate target directories (2.13, rootJS) + - name: Inflate target directories (3.8.1, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13, rootJVM) + - name: Download target directories (3.8.1, rootJVM) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.1-rootJVM - - name: Inflate target directories (2.13, rootJVM) + - name: Inflate target directories (3.8.1, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13, rootNative) + - name: Download target directories (3.8.1, rootNative) uses: actions/download-artifact@v6 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.8.1-rootNative - - name: Inflate target directories (2.13, rootNative) + - name: Inflate target directories (3.8.1, rootNative) run: | tar xf targets.tar rm targets.tar @@ -274,7 +274,7 @@ jobs: - name: Submit Dependencies uses: scalacenter/sbt-dependency-submission@v2 with: - modules-ignore: rootjs_3 rootjs_2.12 rootjs_2.13 docs_3 cats-mtl-tests_sjs1_3 cats-mtl-tests_sjs1_2.12 cats-mtl-tests_sjs1_2.13 rootjvm_3 rootjvm_2.12 rootjvm_2.13 rootnative_3 rootnative_2.12 rootnative_2.13 cats-mtl-tests_3 cats-mtl-tests_2.12 cats-mtl-tests_2.13 cats-mtl-tests_native0.5_3 cats-mtl-tests_native0.5_2.12 cats-mtl-tests_native0.5_2.13 + modules-ignore: rootjs_3 rootjs_2.12 rootjs_3 docs_3 cats-mtl-tests_sjs1_3 cats-mtl-tests_sjs1_2.12 cats-mtl-tests_sjs1_3 rootjvm_3 rootjvm_2.12 rootjvm_3 rootnative_3 rootnative_2.12 rootnative_3 cats-mtl-tests_3 cats-mtl-tests_2.12 cats-mtl-tests_3 cats-mtl-tests_native0.5_3 cats-mtl-tests_native0.5_2.12 cats-mtl-tests_native0.5_3 configs-ignore: test scala-tool scala-doc-tool test-internal site: