From c5680963429ba1d8d3ab7529b6a09c8843e9755e Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Wed, 27 Aug 2025 14:36:37 +0200 Subject: [PATCH 1/6] Bump Mill to 1.0.4 --- .mill-version | 2 +- build.mill.scala | 4 ++-- mill | 2 +- mill.bat | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.mill-version b/.mill-version index 6d7de6e..ee90284 100644 --- a/.mill-version +++ b/.mill-version @@ -1 +1 @@ -1.0.2 +1.0.4 diff --git a/build.mill.scala b/build.mill.scala index 93871e4..e327244 100644 --- a/build.mill.scala +++ b/build.mill.scala @@ -89,12 +89,12 @@ trait JavaClassNameModule extends ScalaModule with ScalafixModule { override def allMvnDeps: T[Seq[Dep]] = Task { super.allMvnDeps() - .map(_.exclude(jlineDeps.map(d => d.organization -> d.name): _*)) ++ jlineDeps + .map(_.exclude(jlineDeps.map(d => d.organization -> d.name)*)) ++ jlineDeps } override def mvnDeps: T[Seq[Dep]] = super.mvnDeps().map(_.exclude(jlineDeps - .map(d => d.organization -> d.name): _*)) ++ jlineDeps + .map(d => d.organization -> d.name)*)) ++ jlineDeps } object `scala3-graal-processor` extends JavaClassNameModule { diff --git a/mill b/mill index 093a90c..8dc441b 100755 --- a/mill +++ b/mill @@ -39,7 +39,7 @@ if [ "$1" = "--setup-completions" ] ; then fi if [ -z "${DEFAULT_MILL_VERSION}" ] ; then - DEFAULT_MILL_VERSION=1.0.2 + DEFAULT_MILL_VERSION=1.0.4 fi diff --git a/mill.bat b/mill.bat index 457794f..37d5df2 100644 --- a/mill.bat +++ b/mill.bat @@ -34,7 +34,7 @@ rem setlocal seems to be unavailable on Windows 95/98/ME rem but I don't think we need to support them in 2019 setlocal enabledelayedexpansion -if [!DEFAULT_MILL_VERSION!]==[] ( set "DEFAULT_MILL_VERSION=1.0.2" ) +if [!DEFAULT_MILL_VERSION!]==[] ( set "DEFAULT_MILL_VERSION=1.0.4" ) if [!MILL_GITHUB_RELEASE_CDN!]==[] ( set "MILL_GITHUB_RELEASE_CDN=" ) From aed32f1808de0ebb5c584390cb823604e3067189 Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Wed, 27 Aug 2025 14:46:56 +0200 Subject: [PATCH 2/6] Bump `mill-native-image` & `mill-native-image-upload` to 0.2.2 --- build.mill.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.mill.scala b/build.mill.scala index e327244..c5f6e34 100644 --- a/build.mill.scala +++ b/build.mill.scala @@ -1,6 +1,6 @@ //| mvnDeps: -//| - io.github.alexarchambault.mill::mill-native-image::0.2.0 -//| - io.github.alexarchambault.mill::mill-native-image-upload:0.2.0 +//| - io.github.alexarchambault.mill::mill-native-image::0.2.2 +//| - io.github.alexarchambault.mill::mill-native-image-upload:0.2.2 //| - com.goyeau::mill-scalafix::0.6.0 //| - com.lumidion::sonatype-central-client-requests:0.6.0 package build From 416d3c5ab111733c0a75b5a1c0c030c77aa0a95e Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Wed, 27 Aug 2025 14:47:53 +0200 Subject: [PATCH 3/6] Bump Scala CLI to 1.8.5 --- build.mill.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.mill.scala b/build.mill.scala index c5f6e34..fb1fb5c 100644 --- a/build.mill.scala +++ b/build.mill.scala @@ -25,7 +25,7 @@ import mill.util.{Tasks, VcsVersion} object Versions { def scala = "3.3.6" - def scalaCli = "1.8.4" + def scalaCli = "1.8.5" def graalVmVersion = "22.3.1" def coursier = "2.1.24" def osLib = "0.11.4" From ffff846007f93c902d0dc069a6375f382249c6de Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Wed, 27 Aug 2025 14:49:29 +0200 Subject: [PATCH 4/6] Bump `os-lib` to 0.11.5 --- build.mill.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.mill.scala b/build.mill.scala index fb1fb5c..4305065 100644 --- a/build.mill.scala +++ b/build.mill.scala @@ -28,7 +28,7 @@ object Versions { def scalaCli = "1.8.5" def graalVmVersion = "22.3.1" def coursier = "2.1.24" - def osLib = "0.11.4" + def osLib = "0.11.5" def uTest = "0.8.9" def jline = "3.25.0" def ubuntu = "24.04" From d351f73db761feabd51513cf0e6314132e7a8a9f Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Wed, 27 Aug 2025 14:55:37 +0200 Subject: [PATCH 5/6] Bump `utest` to 0.9.1 --- build.mill.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.mill.scala b/build.mill.scala index 4305065..493a905 100644 --- a/build.mill.scala +++ b/build.mill.scala @@ -29,7 +29,7 @@ object Versions { def graalVmVersion = "22.3.1" def coursier = "2.1.24" def osLib = "0.11.5" - def uTest = "0.8.9" + def uTest = "0.9.1" def jline = "3.25.0" def ubuntu = "24.04" } From f18721b7a8cefec9aa00420852ddc8516319fe69 Mon Sep 17 00:00:00 2001 From: Piotr Chabelski Date: Wed, 27 Aug 2025 14:58:32 +0200 Subject: [PATCH 6/6] Bump `actions/checkout` to v5 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01badc0..327850c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: matrix: os: [ubuntu-24.04, windows-latest, macos-13, macos-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: true @@ -57,7 +57,7 @@ jobs: - format runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: true @@ -89,7 +89,7 @@ jobs: - format runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: true @@ -118,7 +118,7 @@ jobs: timeout-minutes: 15 runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: true @@ -133,7 +133,7 @@ jobs: timeout-minutes: 15 runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: true @@ -151,7 +151,7 @@ jobs: if: github.event_name == 'push' runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: true