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

kirs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 39f87add3f GEODE-10434: Fix deprecated actions/upload-artifact@v3 
(#7899)
39f87add3f is described below

commit 39f87add3fa28069d514203c190418c821e30a92
Author: Sai Boorlagadda <[email protected]>
AuthorDate: Thu May 8 18:52:03 2025 -0700

    GEODE-10434: Fix deprecated actions/upload-artifact@v3 (#7899)
---
 .github/workflows/codeql.yml |  2 +-
 .github/workflows/gradle.yml | 16 ++++++++--------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index fa98047104..4a50baa3ea 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -60,7 +60,7 @@ jobs:
       uses: actions/checkout@v3
 
     - name: Setup Java JDK
-      uses: actions/[email protected]
+      uses: actions/[email protected]
       with:
         java-version: 8
         distribution: temurin
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index bbcf016772..f9d63163db 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -139,7 +139,7 @@ jobs:
          -PtestJava11Home=${JAVA_HOME_11_X64} \
          -PtestJava17Home=${JAVA_HOME_17_X64} \
          test --console=plain --no-daemon
-   - uses: actions/upload-artifact@v3
+   - uses: actions/upload-artifact@v4
      if: failure()
      with:
        name: unit-test-reports-${{ matrix.os }}-${{ matrix.java }}
@@ -188,7 +188,7 @@ jobs:
            -PtestJava11Home=${JAVA_HOME_11_X64} \
            -PtestJava17Home=${JAVA_HOME_17_X64} \
            integrationTest --console=plain --no-daemon
-     - uses: actions/upload-artifact@v3
+     - uses: actions/upload-artifact@v4
        if: failure()
        with:
          name: integration-test-reports-${{ matrix.os }}-${{ matrix.java }}
@@ -230,7 +230,7 @@ jobs:
             -PtestJVMVer=${JAVA_TEST_VERSION} \
             -PtestJava8Home=${JAVA_HOME_8_X64} \
             acceptanceTest --console=plain --no-daemon
-      - uses: actions/upload-artifact@v3
+      - uses: actions/upload-artifact@v4
         if: failure()
         with:
           name: acceptance-test-reports-${{ matrix.os }}-${{ matrix.java }}
@@ -274,7 +274,7 @@ jobs:
             -PtestJVMVer=${JAVA_TEST_VERSION} \
             -PtestJava8Home=${JAVA_HOME_8_X64} \
             geode-wan:distributedTest --console=plain --no-daemon
-      - uses: actions/upload-artifact@v3
+      - uses: actions/upload-artifact@v4
         if: failure()
         with:
           name: wan-distributed-test-reports-${{ matrix.os }}-${{ matrix.java 
}}
@@ -318,7 +318,7 @@ jobs:
             -PtestJVMVer=${JAVA_TEST_VERSION} \
             -PtestJava8Home=${JAVA_HOME_8_X64} \
             geode-cq:distributedTest --console=plain --no-daemon
-      - uses: actions/upload-artifact@v3
+      - uses: actions/upload-artifact@v4
         if: failure()
         with:
           name: cq-distributed-test-reports-${{ matrix.os }}-${{ matrix.java }}
@@ -362,7 +362,7 @@ jobs:
             -PtestJVMVer=${JAVA_TEST_VERSION} \
             -PtestJava8Home=${JAVA_HOME_8_X64} \
             geode-lucene:distributedTest --console=plain --no-daemon
-      - uses: actions/upload-artifact@v3
+      - uses: actions/upload-artifact@v4
         if: failure()
         with:
           name: lucene-distributed-test-reports-${{ matrix.os }}-${{ 
matrix.java }}
@@ -407,7 +407,7 @@ jobs:
             geode-gfsh:distributedTest \
             geode-web:distributedTest \
             geode-web-management:distributedTest --console=plain --no-daemon
-      - uses: actions/upload-artifact@v3
+      - uses: actions/upload-artifact@v4
         if: failure()
         with:
           name: mgmt-distributed-test-reports-${{ matrix.os }}-${{ matrix.java 
}}
@@ -456,7 +456,7 @@ jobs:
             geode-old-client:distributedTest \
             extensions:geode-modules:distributedTest \
             extensions:geode-modules-tomcat8:distributedTest --console=plain 
--no-daemon
-      - uses: actions/upload-artifact@v3
+      - uses: actions/upload-artifact@v4
         if: failure()
         with:
           name: assembly-distributed-test-reports-${{ matrix.os }}-${{ 
matrix.java }}

Reply via email to