Skip to content

Commit ed52341

Browse files
committed
chore: Updating actions to new versions nort running on node20
Signed-off-by: Emmanuel Hugonnet <ehugonne@redhat.com>
1 parent fd33b3d commit ed52341

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
java-version: ['17', '21', '25']
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: Set up JDK ${{ matrix.java-version }}
2323
uses: actions/setup-java@v4
2424
with:
@@ -29,7 +29,7 @@ jobs:
2929
run: mvn -B package --file pom.xml -fae
3030
- name: Upload Test Reports
3131
if: failure()
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@v6
3333
with:
3434
name: surefire-reports-java-${{ matrix.java-version }}
3535
path: |
@@ -39,7 +39,7 @@ jobs:
3939
if-no-files-found: warn
4040
- name: Upload Build Logs
4141
if: failure()
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v6
4343
with:
4444
name: build-logs-java-${{ matrix.java-version }}
4545
path: |

.github/workflows/build-with-release-profile-run.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Download PR info
30-
uses: actions/download-artifact@v4
30+
uses: actions/download-artifact@v8
3131
with:
3232
name: pr-info
3333
github-token: ${{ github.token }}
@@ -68,7 +68,7 @@ jobs:
6868
});
6969
7070
- name: Checkout PR code
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v6
7272
with:
7373
# Checkout the exact commit from the PR (or push)
7474
# This is safe because the workflow code (this file) is always from main

.github/workflows/build-with-release-profile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
cat pr_info/*
4444
4545
- name: Upload PR info
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v6
4747
with:
4848
name: pr-info
4949
path: pr_info/

.github/workflows/cloud-deployment-example.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ jobs:
1616
timeout-minutes: 30
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
20-
19+
uses: actions/checkout@v6
2120
- name: Set up JDK 17
2221
uses: actions/setup-java@v5
2322
with:

.github/workflows/create-github-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0 # Fetch all history for changelog generation
2121

.github/workflows/release-to-maven-central.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Set up JDK 17
21-
uses: actions/setup-java@v4
21+
uses: actions/setup-java@v6
2222
with:
2323
java-version: '17'
2424
distribution: 'temurin'

.github/workflows/run-tck.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
java-version: [17, 21, 25]
3838
steps:
3939
- name: Checkout a2a-java
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141
- name: Checkout a2a-tck
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
with:
4444
repository: a2aproject/a2a-tck
4545
path: tck/a2a-tck
@@ -157,7 +157,7 @@ jobs:
157157
sleep 2
158158
- name: Upload TCK Diagnostics
159159
if: failure()
160-
uses: actions/upload-artifact@v4
160+
uses: actions/upload-artifact@v6
161161
with:
162162
name: tck-diagnostics-java-${{ matrix.java-version }}
163163
path: |
@@ -167,7 +167,7 @@ jobs:
167167
if-no-files-found: warn
168168
- name: Upload TCK Compliance Report
169169
if: always()
170-
uses: actions/upload-artifact@v4
170+
uses: actions/upload-artifact@v6
171171
with:
172172
name: tck-compliance-report-java-${{ matrix.java-version }}
173173
path: tck/a2a-tck/report.json

0 commit comments

Comments
 (0)