File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 matrix :
1919 os : [ubuntu-24.04, windows-latest, macos-13, macos-latest]
2020 steps :
21- - uses : actions/checkout@v2
21+ - uses : actions/checkout@v5
2222 with :
2323 fetch-depth : 0
2424 submodules : true
5757 - format
5858 runs-on : ubuntu-24.04
5959 steps :
60- - uses : actions/checkout@v2
60+ - uses : actions/checkout@v5
6161 with :
6262 fetch-depth : 0
6363 submodules : true
8989 - format
9090 runs-on : ubuntu-24.04
9191 steps :
92- - uses : actions/checkout@v2
92+ - uses : actions/checkout@v5
9393 with :
9494 fetch-depth : 0
9595 submodules : true
@@ -118,7 +118,7 @@ jobs:
118118 timeout-minutes : 15
119119 runs-on : ubuntu-24.04
120120 steps :
121- - uses : actions/checkout@v2
121+ - uses : actions/checkout@v5
122122 with :
123123 fetch-depth : 0
124124 submodules : true
@@ -133,7 +133,7 @@ jobs:
133133 timeout-minutes : 15
134134 runs-on : ubuntu-24.04
135135 steps :
136- - uses : actions/checkout@v4
136+ - uses : actions/checkout@v5
137137 with :
138138 fetch-depth : 0
139139 submodules : true
@@ -151,7 +151,7 @@ jobs:
151151 if : github.event_name == 'push'
152152 runs-on : ubuntu-24.04
153153 steps :
154- - uses : actions/checkout@v2
154+ - uses : actions/checkout@v5
155155 with :
156156 fetch-depth : 0
157157 submodules : true
Original file line number Diff line number Diff line change 1- 1.0.2
1+ 1.0.4
Original file line number Diff line number Diff line change 11// | mvnDeps:
2- // | - io.github.alexarchambault.mill::mill-native-image::0.2.0
3- // | - io.github.alexarchambault.mill::mill-native-image-upload:0.2.0
2+ // | - io.github.alexarchambault.mill::mill-native-image::0.2.2
3+ // | - io.github.alexarchambault.mill::mill-native-image-upload:0.2.2
44// | - com.goyeau::mill-scalafix::0.6.0
55// | - com.lumidion::sonatype-central-client-requests:0.6.0
66package build
@@ -25,11 +25,11 @@ import mill.util.{Tasks, VcsVersion}
2525
2626object Versions {
2727 def scala = " 3.3.6"
28- def scalaCli = " 1.8.4 "
28+ def scalaCli = " 1.8.5 "
2929 def graalVmVersion = " 22.3.1"
3030 def coursier = " 2.1.24"
31- def osLib = " 0.11.4 "
32- def uTest = " 0.8.9 "
31+ def osLib = " 0.11.5 "
32+ def uTest = " 0.9.1 "
3333 def jline = " 3.25.0"
3434 def ubuntu = " 24.04"
3535}
@@ -89,12 +89,12 @@ trait JavaClassNameModule extends ScalaModule with ScalafixModule {
8989
9090 override def allMvnDeps : T [Seq [Dep ]] = Task {
9191 super .allMvnDeps()
92- .map(_.exclude(jlineDeps.map(d => d.organization -> d.name): _ * )) ++ jlineDeps
92+ .map(_.exclude(jlineDeps.map(d => d.organization -> d.name)* )) ++ jlineDeps
9393 }
9494
9595 override def mvnDeps : T [Seq [Dep ]] =
9696 super .mvnDeps().map(_.exclude(jlineDeps
97- .map(d => d.organization -> d.name): _ * )) ++ jlineDeps
97+ .map(d => d.organization -> d.name)* )) ++ jlineDeps
9898}
9999
100100object `scala3-graal-processor` extends JavaClassNameModule {
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if [ "$1" = "--setup-completions" ] ; then
3939fi
4040
4141if [ -z " ${DEFAULT_MILL_VERSION} " ] ; then
42- DEFAULT_MILL_VERSION=1.0.2
42+ DEFAULT_MILL_VERSION=1.0.4
4343fi
4444
4545
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ rem setlocal seems to be unavailable on Windows 95/98/ME
3434rem but I don't think we need to support them in 2019
3535setlocal enabledelayedexpansion
3636
37- if [!DEFAULT_MILL_VERSION! ]== [] ( set " DEFAULT_MILL_VERSION = 1.0.2 " )
37+ if [!DEFAULT_MILL_VERSION! ]== [] ( set " DEFAULT_MILL_VERSION = 1.0.4 " )
3838
3939if [!MILL_GITHUB_RELEASE_CDN! ]== [] ( set " MILL_GITHUB_RELEASE_CDN = " )
4040
You can’t perform that action at this time.
0 commit comments