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

robbie pushed a commit to branch development
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-examples.git


The following commit(s) were added to refs/heads/development by this push:
     new 834cbde  upgrade actions versions to latest, fix deprecation warnings
834cbde is described below

commit 834cbdeb1ecff2824c5b5e6060cb89ec819937cf
Author: Robbie Gemmell <rob...@apache.org>
AuthorDate: Fri Jan 26 11:11:34 2024 +0000

    upgrade actions versions to latest, fix deprecation warnings
---
 .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 f5d3c8f..c89b563 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -30,13 +30,13 @@ jobs:
         java: [ 11 ]
 
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
         with:
           path: activemq-artemis-examples
 
       - name: Cache Maven Local Repo
         if: ${{ !startsWith(github.ref, 'refs/tags/') }}
-        uses: actions/cache@v3
+        uses: actions/cache@v4
         with:
           path: |
             ~/.m2/repository/
@@ -45,14 +45,14 @@ jobs:
             ${{ runner.os }}-mvn-
 
       - name: Install JDK ${{ matrix.java }}
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           java-version: ${{ matrix.java }}
           distribution: 'temurin'
 
       - name: Checkout Artemis Repo (non-main Examples)
         if: ${{ (github.event_name == 'pull_request' && github.base_ref != 
'main') || (github.event_name != 'pull_request' && github.ref != 
'refs/heads/main') }}
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           repository: ${{ env.ARTEMIS_REPO }}
           ref: ${{ env.ARTEMIS_BRANCH }}
@@ -109,13 +109,13 @@ jobs:
         java: [ 11 ]
 
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
         with:
           path: activemq-artemis-examples
 
       - name: Cache Maven Local Repo
         if: ${{ !startsWith(github.ref, 'refs/tags/') }}
-        uses: actions/cache@v3
+        uses: actions/cache@v4
         with:
           path: |
             ~/.m2/repository/
@@ -124,14 +124,14 @@ jobs:
             ${{ runner.os }}-mvn-
 
       - name: Install JDK ${{ matrix.java }}
-        uses: actions/setup-java@v3
+        uses: actions/setup-java@v4
         with:
           java-version: ${{ matrix.java }}
           distribution: 'temurin'
 
       - name: Checkout Artemis Repo (non-main Examples)
         if: ${{ (github.event_name == 'pull_request' && github.base_ref != 
'main') || (github.event_name != 'pull_request' && github.ref != 
'refs/heads/main') }}
-        uses: actions/checkout@v3
+        uses: actions/checkout@v4
         with:
           repository: ${{ env.ARTEMIS_REPO }}
           ref: ${{ env.ARTEMIS_BRANCH }}

Reply via email to