Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
/ jdk21 Public archive

Commit 08965e6

Browse files
committed
8310259: Pin msys2/setup-msys2 github action to a specific commit
8309934: Update GitHub Actions to use JDK 17 for building jtreg Reviewed-by: cstein, clanger Backport-of: 959a61fdd483c9523764b9ba0972f59ca06db0ee
1 parent e0d3706 commit 08965e6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -57,7 +57,7 @@ runs:
5757
- name: 'Build JTReg'
5858
run: |
5959
# Build JTReg and move files to the proper locations
60-
bash make/build.sh --jdk "$JAVA_HOME_11_X64"
60+
bash make/build.sh --jdk "$JAVA_HOME_17_X64"
6161
mkdir ../installed
6262
mv build/images/jtreg/* ../installed
6363
working-directory: jtreg/src

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ runs:
3030
using: composite
3131
steps:
3232
- name: 'Install MSYS2'
33-
uses: msys2/setup-msys2@v2
33+
# use a specific release of msys2/setup-msys2 to prevent jtreg build failures on newer release
34+
uses: msys2/setup-msys2@7efe20baefed56359985e327d329042cde2434ff
3435
with:
3536
install: 'autoconf tar unzip zip make'
3637
path-type: minimal

0 commit comments

Comments
 (0)