From 3c42b86ff67b54ac1f70fb33992c2e31b7165373 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 13 Jan 2024 11:58:49 +0000 Subject: [PATCH 1/2] Update sbt-github-actions to 0.22.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 932f118a..fae385ea 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.19.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.22.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") From d1ddd24ea26b6d378e7a7aea85afde44340b16c1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 13 Jan 2024 11:59:38 +0000 Subject: [PATCH 2/2] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6e5ab35..4881cf7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - name: Setup Java (zulu@8) if: matrix.java == 'zulu@8' - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: zulu java-version: 8 @@ -55,7 +55,7 @@ jobs: run: tar cf targets.tar target project/target - name: Upload target directories - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }} path: targets.tar @@ -78,14 +78,14 @@ jobs: - name: Setup Java (zulu@8) if: matrix.java == 'zulu@8' - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: zulu java-version: 8 cache: sbt - name: Download target directories (2.11.12) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-2.11.12-${{ matrix.java }} @@ -95,7 +95,7 @@ jobs: rm targets.tar - name: Download target directories (2.12.18) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }} @@ -105,7 +105,7 @@ jobs: rm targets.tar - name: Download target directories (2.13.12) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} @@ -115,7 +115,7 @@ jobs: rm targets.tar - name: Download target directories (3.3.1) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }}