Skip to content

Commit 502f81e

Browse files
Merge tag 'jdk-23+8' into labsjdk/automation-2-1-2024-5999
Added tag jdk-23+8 for changeset 5b9b176
2 parents 37cc252 + 5b9b176 commit 502f81e

File tree

1,226 files changed

+17036
-11566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,226 files changed

+17036
-11566
lines changed

.github/actions/do-build/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ runs:
6666
shell: bash
6767

6868
- name: 'Upload build logs'
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: failure-logs-${{ inputs.platform }}${{ inputs.debug-suffix }}
7272
path: failure-logs
7373
if: steps.check.outputs.failure == 'true'
7474

7575
# This is the best way I found to abort the job with an error message
7676
- name: 'Notify about build failures'
77-
uses: actions/github-script@v6
77+
uses: actions/github-script@v7
7878
with:
7979
script: core.setFailed('Build failed. See summary for details.')
8080
if: steps.check.outputs.failure == 'true'

.github/actions/get-bootjdk/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ runs:
6565

6666
- name: 'Check cache for BootJDK'
6767
id: get-cached-bootjdk
68-
uses: actions/cache@v3
68+
uses: actions/cache@v4
6969
with:
7070
path: bootjdk/jdk
7171
key: boot-jdk-${{ inputs.platform }}-${{ steps.sha256.outputs.value }}

.github/actions/get-bundles/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ runs:
4848
steps:
4949
- name: 'Download bundles artifact'
5050
id: download-bundles
51-
uses: actions/download-artifact@v3
51+
uses: actions/download-artifact@v4
5252
with:
5353
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}
5454
path: bundles
5555
continue-on-error: true
5656

5757
- name: 'Download bundles artifact (retry)'
58-
uses: actions/download-artifact@v3
58+
uses: actions/download-artifact@v4
5959
with:
6060
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}
6161
path: bundles

.github/actions/get-jtreg/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141

4242
- name: 'Check cache for JTReg'
4343
id: get-cached-jtreg
44-
uses: actions/cache@v3
44+
uses: actions/cache@v4
4545
with:
4646
path: jtreg/installed
4747
key: jtreg-${{ steps.version.outputs.value }}

.github/actions/get-msys2/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ runs:
3030
using: composite
3131
steps:
3232
- name: 'Install MSYS2'
33-
# use a specific release of msys2/setup-msys2 to prevent jtreg build failures on newer release
34-
uses: msys2/setup-msys2@7efe20baefed56359985e327d329042cde2434ff
33+
uses: msys2/[email protected]
3534
with:
3635
install: 'autoconf tar unzip zip make'
3736
path-type: minimal

.github/actions/upload-bundles/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969
shell: bash
7070

7171
- name: 'Upload bundles artifact'
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}
7575
path: bundles

.github/scripts/gen-test-summary.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ error_count=$(echo $errors | wc -w || true)
4242

4343
if [[ "$failures" = "" && "$errors" = "" ]]; then
4444
# We know something went wrong, but not what
45+
echo 'failure=true' >> $GITHUB_OUTPUT
4546
echo 'error-message=Unspecified test suite failure. Please see log for job for details.' >> $GITHUB_OUTPUT
4647
exit 0
4748
fi

.github/workflows/build-cross-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
121121
- name: 'Check cache for sysroot'
122122
id: get-cached-sysroot
123-
uses: actions/cache@v3
123+
uses: actions/cache@v4
124124
with:
125125
path: sysroot
126126
key: sysroot-${{ matrix.debian-arch }}-${{ hashFiles('./.github/workflows/build-cross-compile.yml') }}

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ jobs:
357357
# Hack to get hold of the api environment variables that are only defined for actions
358358
- name: 'Get API configuration'
359359
id: api
360-
uses: actions/github-script@v6
360+
uses: actions/github-script@v7
361361
with:
362362
script: 'return { url: process.env["ACTIONS_RUNTIME_URL"], token: process.env["ACTIONS_RUNTIME_TOKEN"] }'
363363

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ jobs:
206206
if: always()
207207

208208
- name: 'Upload test results'
209-
uses: actions/upload-artifact@v3
209+
uses: actions/upload-artifact@v4
210210
with:
211211
path: results
212212
name: ${{ steps.package.outputs.artifact-name }}
213213
if: always()
214214

215215
# This is the best way I found to abort the job with an error message
216216
- name: 'Notify about test failures'
217-
uses: actions/github-script@v6
217+
uses: actions/github-script@v7
218218
with:
219219
script: core.setFailed('${{ steps.run-tests.outputs.error-message }}')
220220
if: steps.run-tests.outputs.failure == 'true'

0 commit comments

Comments
 (0)