From c3af254031941a413ab5dd81aabd2c6f2789ce6e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 24 May 2021 02:40:32 +0200 Subject: [PATCH 1/2] Update sbt-github-actions to 0.11.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 07e926e1a..2d6dec679 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1") +addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.11.0") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0") From c2ed5c87b15468533b9a60d11935d161e5c3a6f6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 24 May 2021 02:41:09 +0200 Subject: [PATCH 2/2] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a121e5c3..20520fa1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ name: Continuous Integration on: pull_request: - branches: ['*'] + branches: ['**'] push: - branches: ['*'] + branches: ['**'] tags: [v*] env: @@ -50,15 +50,15 @@ jobs: key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - name: Check that workflows are up to date - run: sbt ++${{ matrix.scala }} githubWorkflowCheck + run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck' - name: Build project (Scala 2) if: matrix.scala == '2.12.13' || matrix.scala == '2.13.6' - run: sbt ++${{ matrix.scala }} validateJVM validateJS + run: sbt --client '++${{ matrix.scala }}; validateJVM; validateJS' - name: Build project (Scala 3) if: matrix.scala == '3.0.0' - run: sbt ++${{ matrix.scala }} validateJVM30 validateJS30 + run: sbt --client '++${{ matrix.scala }}; validateJVM30; validateJS30' - name: Codecov uses: codecov/codecov-action@v1