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

martijnvisser pushed a commit to branch ci_utils
in repository 
https://gitbox.apache.org/repos/asf/flink-connector-shared-utils.git


The following commit(s) were added to refs/heads/ci_utils by this push:
     new ec54606  [FLINK-34314] Update CI Node Actions from NodeJS 16 to NodeJS 
20. This closes  (#35)
ec54606 is described below

commit ec546068089dac4c4192875b57703989fc3bb009
Author: Martijn Visser <2989614+martijnvis...@users.noreply.github.com>
AuthorDate: Tue Feb 20 10:12:14 2024 +0100

    [FLINK-34314] Update CI Node Actions from NodeJS 16 to NodeJS 20. This 
closes  (#35)
    
    * [FLINK-34314] Update CI Node Actions from NodeJS 16 to NodeJS 20
    
    * [FLINK-34314] Update setup-maven also to NodeJS 20 version
---
 .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 e9d1fcc..418998d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -77,19 +77,19 @@ jobs:
       - run: echo "Running CI pipeline for JDK version ${{ matrix.jdk }}"
 
       - name: Check out repository code
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           ref: "${{ inputs.connector_branch }}"
 
       - name: Set JDK
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           java-version: ${{ matrix.jdk }}
           distribution: 'temurin'
           cache: 'maven'
 
       - name: Set Maven 3.8.6
-        uses: stCarolas/setup-maven@v4.5
+        uses: stCarolas/setup-maven@v5
         with:
           maven-version: 3.8.6
 
@@ -130,7 +130,7 @@ jobs:
 
       - name: Restore cached Flink binary
         if: ${{ env.cache_binary == 'true' }}
-        uses: actions/cache/restore@v3
+        uses: actions/cache/restore@v4
         id: restore-cache-flink
         with:
           path: ${{ env.FLINK_CACHE_DIR }}
@@ -143,7 +143,7 @@ jobs:
 
       - name: Cache Flink binary
         if: ${{ env.cache_binary == 'true' }}
-        uses: actions/cache/save@v3
+        uses: actions/cache/save@v4
         id: cache-flink
         with:
           path: ${{ env.FLINK_CACHE_DIR }}

Reply via email to