From d95d7bac7387fae929844a7044a6fe919e4ce815 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 24 Jun 2026 16:07:09 +0000 Subject: [PATCH 1/2] Update sbt-github-actions to 0.31.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a2a311bd..e027dc04 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -6,4 +6,4 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("io.github.cquiroz" % "sbt-locales" % "4.5.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.29.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.31.0") From 99ea64a9769eec64e3d72d3631110b75dfebb2ec Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 24 Jun 2026 16:07:45 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff2e40f8..1d5d7bae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -56,16 +56,16 @@ jobs: run: sudo apt-get install libutf8proc-dev - name: Check that workflows are up to date - run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck + run: sbt '++ ${{ matrix.scala }}; githubWorkflowCheck' - name: Build project - run: sbt '++ ${{ matrix.scala }}' test + run: sbt '++ ${{ matrix.scala }}; test' - name: Compress target directories run: tar cf targets.tar target localesFullCurrenciesDb/js/target core/native/target localesMinimalEnUSDb/native/target macroutils/target core/js/target localesFullCurrenciesDb/native/target core/jvm/target tests/js/target localesFullDb/.js/target localesFullDb/.native/target localesMinimalEnUSDb/js/target tests/jvm/target demo/native/target localesMinimalEnDb/native/target localesMinimalEnDb/js/target tests/native/target demo/js/target project/target - name: Upload target directories - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }} path: targets.tar @@ -82,7 +82,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -106,7 +106,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Download target directories (2.12.20) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }} @@ -116,7 +116,7 @@ jobs: rm targets.tar - name: Download target directories (2.13.16) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} @@ -126,7 +126,7 @@ jobs: rm targets.tar - name: Download target directories (3.3.5) - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: target-${{ matrix.os }}-3.3.5-${{ matrix.java }}