Skip to content

Commit fa2f49d

Browse files
authored
Merge pull request #114 from Gedochao/update/stuff
Update dependencies
2 parents 983fdd4 + f18721b commit fa2f49d

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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
@@ -57,7 +57,7 @@ jobs:
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
@@ -89,7 +89,7 @@ jobs:
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

.mill-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.0.4

build.mill.scala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
66
package build
@@ -25,11 +25,11 @@ import mill.util.{Tasks, VcsVersion}
2525

2626
object 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

100100
object `scala3-graal-processor` extends JavaClassNameModule {

mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if [ "$1" = "--setup-completions" ] ; then
3939
fi
4040

4141
if [ -z "${DEFAULT_MILL_VERSION}" ] ; then
42-
DEFAULT_MILL_VERSION=1.0.2
42+
DEFAULT_MILL_VERSION=1.0.4
4343
fi
4444

4545

mill.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ rem setlocal seems to be unavailable on Windows 95/98/ME
3434
rem but I don't think we need to support them in 2019
3535
setlocal 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

3939
if [!MILL_GITHUB_RELEASE_CDN!]==[] ( set "MILL_GITHUB_RELEASE_CDN=" )
4040

0 commit comments

Comments
 (0)