Skip to content

Commit b0b9dcf

Browse files
authored
Merge pull request #2215 from SAP/pr-jdk-27+16
Merge to tag jdk-27+16
2 parents c9a7eac + e3ba566 commit b0b9dcf

726 files changed

Lines changed: 15538 additions & 10205 deletions

File tree

Some content is hidden

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ runs:
3737

3838
- name: 'Check cache for already built JTReg'
3939
id: get-cached
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: jtreg/installed
4343
key: jtreg-${{ steps.version.outputs.value }}
4444

4545
- name: 'Checkout the JTReg source'
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v6
4747
with:
4848
repository: openjdk/jtreg
4949
ref: jtreg-${{ steps.version.outputs.value }}
@@ -61,7 +61,7 @@ runs:
6161
if: (steps.get-cached.outputs.cache-hit != 'true')
6262

6363
- name: 'Upload JTReg artifact'
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v6
6565
with:
6666
name: bundles-jtreg-${{ steps.version.outputs.value }}
6767
path: jtreg/installed

.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@v4
69+
uses: actions/upload-artifact@v6
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@v7
77+
uses: actions/github-script@v8
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@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: bootjdk/jdk
7171
key: boot-jdk-${{ inputs.platform }}-${{ steps.sha256.outputs.value }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,22 @@ runs:
5454
steps:
5555
- name: 'Download bundles artifact'
5656
id: download-bundles
57-
uses: actions/download-artifact@v4
57+
uses: actions/download-artifact@v8
5858
with:
5959
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}
6060
path: bundles
6161
continue-on-error: true
6262

6363
- name: 'Download bundles artifact (retry)'
64-
uses: actions/download-artifact@v4
64+
uses: actions/download-artifact@v8
6565
with:
6666
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}
6767
path: bundles
6868
if: steps.download-bundles.outcome == 'failure'
6969

7070
- name: 'Download static bundles artifact'
7171
id: download-static-bundles
72-
uses: actions/download-artifact@v4
72+
uses: actions/download-artifact@v8
7373
with:
7474
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}${{ inputs.static-suffix }}
7575
path: bundles

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
var: GTEST_VERSION
4141

4242
- name: 'Checkout GTest source'
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v6
4444
with:
4545
repository: google/googletest
4646
ref: 'v${{ steps.version.outputs.value }}'

.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: 'Download JTReg artifact'
4343
id: download-jtreg
44-
uses: actions/download-artifact@v4
44+
uses: actions/download-artifact@v8
4545
with:
4646
name: bundles-jtreg-${{ steps.version.outputs.value }}
4747
path: jtreg/installed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
steps:
3232
- name: 'Install MSYS2'
3333
id: msys2
34-
uses: msys2/setup-msys2@v2.28.0
34+
uses: msys2/setup-msys2@v2.31.0
3535
with:
3636
install: 'autoconf tar unzip zip make'
3737
path-type: minimal

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ runs:
8888
shell: bash
8989

9090
- name: 'Upload bundles artifact'
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v6
9292
with:
9393
name: bundles-${{ inputs.platform }}${{ inputs.debug-suffix }}${{ inputs.static-suffix }}${{ inputs.bundle-suffix }}
9494
path: bundles

.github/workflows/build-alpine-linux.yml

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

7575
steps:
7676
- name: 'Checkout the JDK source'
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v6
7878

7979
- name: 'Install toolchain and dependencies'
8080
run: |

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

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

9595
steps:
9696
- name: 'Checkout the JDK source'
97-
uses: actions/checkout@v4
97+
uses: actions/checkout@v6
9898

9999
- name: 'Get the BootJDK'
100100
id: bootjdk
@@ -122,7 +122,7 @@ jobs:
122122
123123
- name: 'Check cache for sysroot'
124124
id: get-cached-sysroot
125-
uses: actions/cache@v4
125+
uses: actions/cache@v5
126126
with:
127127
path: sysroot
128128
key: sysroot-${{ matrix.debian-arch }}-${{ hashFiles('./.github/workflows/build-cross-compile.yml') }}

0 commit comments

Comments
 (0)