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-persistence-cassandra.git


The following commit(s) were added to refs/heads/main by this push:
     new 2f8b5e6  upgrade ci plugins (#127)
2f8b5e6 is described below

commit 2f8b5e6ff497006572f690fda421ae422e8e7357
Author: PJ Fanning <[email protected]>
AuthorDate: Tue Feb 6 09:49:01 2024 +0100

    upgrade ci plugins (#127)
---
 .github/workflows/headers.yml             |  4 ++--
 .github/workflows/java-format.yml         |  4 ++--
 .github/workflows/link-validator.yml      |  4 ++--
 .github/workflows/publish-1.0-docs.yml    |  4 ++--
 .github/workflows/publish-1.0-nightly.yml |  4 ++--
 .github/workflows/publish-nightly.yml     |  4 ++--
 .github/workflows/unit-tests.yml          | 12 ++++++------
 7 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/.github/workflows/headers.yml b/.github/workflows/headers.yml
index 561010e..5ed4459 100644
--- a/.github/workflows/headers.yml
+++ b/.github/workflows/headers.yml
@@ -14,13 +14,13 @@ jobs:
         uses: actions/checkout@v4
 
       - name: Setup Java 11
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 11
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Check headers
         run: sbt +headerCheckAll
diff --git a/.github/workflows/java-format.yml 
b/.github/workflows/java-format.yml
index c20e279..6e97ee0 100644
--- a/.github/workflows/java-format.yml
+++ b/.github/workflows/java-format.yml
@@ -14,13 +14,13 @@ jobs:
         uses: actions/checkout@v4
 
       - name: Setup Java 11
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 11
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       # Not sure why need to do docs/javafmtCheckAll, figure out later
       - name: Check headers
diff --git a/.github/workflows/link-validator.yml 
b/.github/workflows/link-validator.yml
index 20bb1d5..8f3e2cc 100644
--- a/.github/workflows/link-validator.yml
+++ b/.github/workflows/link-validator.yml
@@ -23,13 +23,13 @@ jobs:
           git checkout scratch
 
       - name: Setup Java 8
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 8
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Setup Coursier
         uses: coursier/[email protected]
diff --git a/.github/workflows/publish-1.0-docs.yml 
b/.github/workflows/publish-1.0-docs.yml
index a88615f..16ac49e 100644
--- a/.github/workflows/publish-1.0-docs.yml
+++ b/.github/workflows/publish-1.0-docs.yml
@@ -17,13 +17,13 @@ jobs:
           ref: 1.0.x
 
       - name: Set up JDK 8
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 8
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Install graphviz
         run: sudo apt-get install -y graphviz
diff --git a/.github/workflows/publish-1.0-nightly.yml 
b/.github/workflows/publish-1.0-nightly.yml
index 83d3411..de92aaf 100644
--- a/.github/workflows/publish-1.0-nightly.yml
+++ b/.github/workflows/publish-1.0-nightly.yml
@@ -19,13 +19,13 @@ jobs:
           ref: 1.0.x
 
       - name: Set up JDK 8
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 8
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Install graphviz
         run: sudo apt-get install -y graphviz
diff --git a/.github/workflows/publish-nightly.yml 
b/.github/workflows/publish-nightly.yml
index 68387ed..856b6f2 100644
--- a/.github/workflows/publish-nightly.yml
+++ b/.github/workflows/publish-nightly.yml
@@ -18,13 +18,13 @@ jobs:
           fetch-tags: true
 
       - name: Set up JDK 8
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 8
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Install graphviz
         run: sudo apt-get install -y graphviz
diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml
index df9404b..871911c 100644
--- a/.github/workflows/unit-tests.yml
+++ b/.github/workflows/unit-tests.yml
@@ -45,13 +45,13 @@ jobs:
           git checkout scratch
 
       - name: Setup Java ${{ matrix.javaVersion }}
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: ${{ matrix.javaVersion }}
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Test against ${{ matrix.container }}
         run: |-
@@ -76,13 +76,13 @@ jobs:
           git checkout scratch
 
       - name: Setup Java 8
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 8
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: MiMa Check
         run: sbt +mimaReportBinaryIssues
@@ -108,13 +108,13 @@ jobs:
           git checkout scratch
 
       - name: Setup Java 11
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           distribution: temurin
           java-version: 11
 
       - name: Cache Coursier cache
-        uses: coursier/[email protected]
+        uses: coursier/cache-action@v6
 
       - name: Create all API docs for artifacts/website and all reference docs
         run: sbt "unidoc; docs/paradox"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to