diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 153c53b..41bcb0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: run: sbt '++ ${{ matrix.scala }}' validate - name: Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 - name: Make target directories if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')) diff --git a/build.sbt b/build.sbt index f701183..983cdf7 100644 --- a/build.sbt +++ b/build.sbt @@ -42,7 +42,7 @@ ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Temurin, "8")) ThisBuild / githubWorkflowBuild := Seq( WorkflowStep.Sbt(List("validate"), name = Some("Build project")), - WorkflowStep.Use(UseRef.Public("codecov", "codecov-action", "v1"), name = Some("Codecov")) + WorkflowStep.Use(UseRef.Public("codecov", "codecov-action", "v3"), name = Some("Codecov")) ) ThisBuild / mergifyPrRules := { val authorCondition = MergifyCondition.Custom("author=scala-steward") @@ -172,8 +172,7 @@ lazy val commonSettings = Def.settings( ) lazy val compileSettings = Def.settings( - scalaVersion := Scala_2_13, - coverageEnabled := false + scalaVersion := Scala_2_13 ) lazy val metadataSettings = Def.settings(