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

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/artemis.git

commit 9d90d24d6087bd6bc1017c45a32bea70ca27a30d
Author: Robbie Gemmell <[email protected]>
AuthorDate: Fri Mar 13 12:29:47 2026 +0000

    NO-JIRA: update deprecated actions to new versions
    
    
https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
---
 .github/workflows/build.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 827087a6ff..33daa54263 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -34,14 +34,14 @@ jobs:
         java: [ 17, 21, 25 ]
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           path: artemis
 
       # Cache is prepared by the 'checks' jobs below
       - name: Restore Maven Local Repo Cache
         if: ${{ !startsWith(github.ref, 'refs/tags/') }}
-        uses: actions/cache/restore@v4
+        uses: actions/cache/restore@v5
         with:
           path: |
             ~/.m2/repository/
@@ -50,7 +50,7 @@ jobs:
             ${{ runner.os }}-mvn-
 
       - name: Install JDK ${{ matrix.java }}
-        uses: actions/setup-java@v4
+        uses: actions/setup-java@v5
         with:
           java-version: ${{ matrix.java }}
           distribution: 'temurin'
@@ -64,7 +64,7 @@ jobs:
 
       - name: Archive Test Logs
         if: failure()
-        uses: actions/upload-artifact@v4
+        uses: actions/upload-artifact@v7
         with:
           name: surefire-reports-jdk-${{ matrix.java }}
           path: artemis/**/target/surefire-reports/*
@@ -79,13 +79,13 @@ jobs:
         java: [ 17, 21, 25 ]
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v6
         with:
           path: artemis
 
       - name: Cache Maven Local Repo
         if: ${{ !startsWith(github.ref, 'refs/tags/') }}
-        uses: actions/cache@v4
+        uses: actions/cache@v5
         with:
           path: |
             ~/.m2/repository/
@@ -94,13 +94,13 @@ jobs:
             ${{ runner.os }}-mvn-
 
       - name: Install JDK ${{ matrix.java }}
-        uses: actions/setup-java@v4
+        uses: actions/setup-java@v5
         with:
           java-version: ${{ matrix.java }}
           distribution: 'temurin'
 
       - name: Checkout Artemis Examples Repo
-        uses: actions/checkout@v4
+        uses: actions/checkout@v6
         with:
           repository: ${{ env.EXAMPLES_REPO }}
           ref: ${{ env.EXAMPLES_BRANCH }}


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

Reply via email to