From b46720c46b717f52506150600c9db574bf0b6e93 Mon Sep 17 00:00:00 2001 From: ex0ns Date: Wed, 31 Jul 2024 18:26:40 +0200 Subject: [PATCH] Update mill-main to 0.11.10 (#415) --- .github/workflows/build.yml | 4 ++-- .../workflows/{publish_snapshot.yaml => publish_snapshot.yml} | 2 +- .github/workflows/release.yml | 2 +- .mill-version | 2 +- .scalafmt.conf | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{publish_snapshot.yaml => publish_snapshot.yml} (96%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d9c64efa..4730d67f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,11 +18,11 @@ jobs: - name: Check code format uses: jrouly/scalafmt-native-action@v1 with: - version: "3.8.1" + version: "3.8.2" arguments: "-c .scalafmt.conf --test core akka examples" - uses: jodersky/setup-mill@v0.3.0 with: - mill-version: 0.11.8 + mill-version: 0.11.10 - name: Compile run: mill '_._[_].compile' - name: Test diff --git a/.github/workflows/publish_snapshot.yaml b/.github/workflows/publish_snapshot.yml similarity index 96% rename from .github/workflows/publish_snapshot.yaml rename to .github/workflows/publish_snapshot.yml index db3440ef..7446fca3 100644 --- a/.github/workflows/publish_snapshot.yaml +++ b/.github/workflows/publish_snapshot.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v2 - uses: jodersky/setup-mill@v0.3.0 with: - mill-version: 0.11.8 + mill-version: 0.11.10 - name: Import GPG key id: import_gpg uses: crazy-max/ghaction-import-gpg@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1a0f742..df978e0d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v2 - uses: jodersky/setup-mill@v0.3.0 with: - mill-version: 0.11.8 + mill-version: 0.11.10 - name: Import GPG key id: import_gpg uses: crazy-max/ghaction-import-gpg@v3 diff --git a/.mill-version b/.mill-version index 1ee43fc5..0521cad1 100644 --- a/.mill-version +++ b/.mill-version @@ -1 +1 @@ -0.11.8 +0.11.10 diff --git a/.scalafmt.conf b/.scalafmt.conf index 16148acd..f5820b42 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.8.1" +version = "3.8.2" maxColumn = 120 runner.dialect = scala213