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/artemis-examples.git
The following commit(s) were added to refs/heads/development by this push:
new 3b0e92b6 NO-JIRA: refresh GHA jobs with updated versions
3b0e92b6 is described below
commit 3b0e92b61437d5437f82a4273cc37dc8a5779f6a
Author: Robbie Gemmell <[email protected]>
AuthorDate: Wed Mar 18 14:43:58 2026 +0000
NO-JIRA: refresh GHA jobs with updated versions
---
.github/workflows/build.yml | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index afe261b0..318de42e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -25,20 +25,20 @@ env:
jobs:
test:
name: Verify Examples
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
java: [ 17, 25 ]
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
path: artemis-examples
- name: Cache Maven Local Repo
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: |
~/.m2/repository/
@@ -47,14 +47,14 @@ 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 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@v4
+ uses: actions/checkout@v6
with:
repository: ${{ env.ARTEMIS_REPO }}
ref: ${{ env.ARTEMIS_BRANCH }}
@@ -106,20 +106,20 @@ jobs:
checks:
name: Compile Check
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
java: [ 17, 25 ]
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
path: artemis-examples
- name: Cache Maven Local Repo
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: |
~/.m2/repository/
@@ -128,14 +128,14 @@ 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 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@v4
+ uses: actions/checkout@v6
with:
repository: ${{ env.ARTEMIS_REPO }}
ref: ${{ env.ARTEMIS_BRANCH }}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]