You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by fa...@apache.org on 2022/11/14 07:38:41 UTC

[incubator-pekko-projection] branch main updated: use latest version of coursier github action (#3)

This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-projection.git


The following commit(s) were added to refs/heads/main by this push:
     new 3077b6e  use latest version of coursier github action (#3)
3077b6e is described below

commit 3077b6ea06e0cc100de506e17fe3c612cd2f02e0
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Mon Nov 14 08:38:37 2022 +0100

    use latest version of coursier github action (#3)
    
    * use latest version of coursier github action
    
    * build issue due to lack of git tags in repo
---
 .github/workflows/checks.yml                      | 6 +++---
 .github/workflows/integration-tests-cassandra.yml | 2 +-
 .github/workflows/integration-tests-jdbc.yml      | 2 +-
 .github/workflows/integration-tests-kafka.yml     | 2 +-
 .github/workflows/integration-tests-slick.yml     | 2 +-
 .github/workflows/release.yml                     | 2 +-
 .github/workflows/unit-tests.yml                  | 2 +-
 project/Common.scala                              | 5 ++---
 project/build.properties                          | 2 +-
 9 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index db3b438..60dadef 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -30,7 +30,7 @@ jobs:
           java-version: adopt@1.11.0-9
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Code style check and binary-compatibility check
         run: sbt "verifyCodeStyle; mimaReportBinaryIssues"
@@ -56,7 +56,7 @@ jobs:
           java-version: adopt@1.11.0-9
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Compile all code with fatal warnings for Java 11, Scala 2.12 and Scala 2.13
         run: sbt "clean ; +IntegrationTest/compile"
@@ -82,7 +82,7 @@ jobs:
           java-version: adopt@1.11.0-9
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Create all API docs for artifacts/website and all reference docs
         run: sbt "unidoc; docs/paradox"
diff --git a/.github/workflows/integration-tests-cassandra.yml b/.github/workflows/integration-tests-cassandra.yml
index d5f93e0..68c4f30 100644
--- a/.github/workflows/integration-tests-cassandra.yml
+++ b/.github/workflows/integration-tests-cassandra.yml
@@ -35,7 +35,7 @@ jobs:
           java-version: ${{ matrix.java-version }}
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }}
         run: sbt "++${{ matrix.scala-version }} akka-projection-cassandra/it:test" ${{ matrix.sbt-opts }}
diff --git a/.github/workflows/integration-tests-jdbc.yml b/.github/workflows/integration-tests-jdbc.yml
index 324b5ab..8db53ea 100644
--- a/.github/workflows/integration-tests-jdbc.yml
+++ b/.github/workflows/integration-tests-jdbc.yml
@@ -39,7 +39,7 @@ jobs:
           java-version: ${{ matrix.java-version }}
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5        
+        uses: coursier/cache-action@v6.4.0        
 
       - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }}
         run: sbt "++${{ matrix.scala-version }} akka-projection-jdbc/it:test" ${{ matrix.sbt-opts }}
diff --git a/.github/workflows/integration-tests-kafka.yml b/.github/workflows/integration-tests-kafka.yml
index 2f2ef81..e9aaa71 100644
--- a/.github/workflows/integration-tests-kafka.yml
+++ b/.github/workflows/integration-tests-kafka.yml
@@ -35,7 +35,7 @@ jobs:
           java-version: ${{ matrix.java-version }}
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }}
         run: sbt "++${{ matrix.scala-version }} akka-projection-kafka/it:test" ${{ matrix.sbt-opts }}
diff --git a/.github/workflows/integration-tests-slick.yml b/.github/workflows/integration-tests-slick.yml
index c966ac4..380a882 100644
--- a/.github/workflows/integration-tests-slick.yml
+++ b/.github/workflows/integration-tests-slick.yml
@@ -39,7 +39,7 @@ jobs:
           java-version: ${{ matrix.java-version }}
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Run all integration tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }}
         run: sbt "++${{ matrix.scala-version }} akka-projection-slick/it:test" ${{ matrix.sbt-opts }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 430765a..10fb641 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
         uses: olafurpg/setup-scala@v10
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Publish artifacts for all Scala versions
         env:
diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml
index 10a1d00..27b8b5d 100644
--- a/.github/workflows/unit-tests.yml
+++ b/.github/workflows/unit-tests.yml
@@ -35,7 +35,7 @@ jobs:
           java-version: ${{ matrix.java-version }}
 
       - name: Cache Coursier cache
-        uses: coursier/cache-action@v5
+        uses: coursier/cache-action@v6.4.0
 
       - name: Run tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }}
         run: sbt "++${{ matrix.scala-version }} test" ${{ matrix.sbt-opts }}
diff --git a/project/Common.scala b/project/Common.scala
index 059d8cd..499a00b 100644
--- a/project/Common.scala
+++ b/project/Common.scala
@@ -63,9 +63,8 @@ object Common extends AutoPlugin {
     // -q Suppress stdout for successful tests.
     Test / testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v", "-q"),
     Test / logBuffered := false,
-    mimaPreviousArtifacts := Set(
-        organization.value %% moduleName.value % previousStableVersion.value
-          .getOrElse(throw new Error("Unable to determine previous version"))),
+    // temporarily disable mima checks
+    mimaPreviousArtifacts := Set.empty,
     sonatypeProfileName := "com.lightbend")
 
 }
diff --git a/project/build.properties b/project/build.properties
index 22af262..8b9a0b0 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -1 +1 @@
-sbt.version=1.7.1
+sbt.version=1.8.0


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org