Skip to content

Commit f1d2407

Browse files
authored
Merge branch 'master' into fix-fast
2 parents 128717e + c3776dc commit f1d2407

4 files changed

Lines changed: 7 additions & 27 deletions

File tree

.github/workflows/master.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,6 @@ jobs:
4646
else
4747
./gradlew ${{matrix.gradle-argument}} --info --stacktrace
4848
fi
49-
- name: Publish Test Results
50-
uses: EnricoMi/publish-unit-test-result-action@v2.23.0
51-
if: always() && matrix.label != 'check' && matrix.label != 'jcstress'
52-
with:
53-
files: |
54-
**/build/test-results/*/TEST-*.xml
5549
- name: Upload Coverage XML Report
5650
uses: actions/upload-artifact@v4
5751
if: always() && matrix.label == 'java25'

.github/workflows/package.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/pr-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
let prNumber = (context.payload.workflow_run.pull_requests || [])[0]?.number;
4848
if (!prNumber) {
4949
const headBranch = context.payload.workflow_run.head_branch;
50-
const headRepo = context.payload.workflow_run.head_repository.full_name;
50+
const headOwner = context.payload.workflow_run.head_repository.owner.login;
5151
const { data: prs } = await github.rest.pulls.list({
5252
owner: context.repo.owner,
5353
repo: context.repo.repo,
54-
head: `${headRepo}:${headBranch}`,
54+
head: `${headOwner}:${headBranch}`,
5555
state: 'open',
5656
});
5757
if (prs.length > 0) {

.github/workflows/static.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
33-
- name: Set up JDK 21
34-
uses: actions/setup-java@v4
32+
uses: actions/checkout@v6
33+
- name: Set up JDK 25
34+
uses: actions/setup-java@v5
3535
with:
36-
distribution: 'temurin'
37-
java-version: '21'
36+
distribution: 'corretto'
37+
java-version: '25'
3838
- name: Generate performance page
3939
run: ./gradlew :performance-results-page:generatePerformancePage
4040
- name: Setup Pages

0 commit comments

Comments
 (0)