From ebc42f4ad28dffa380c6db7685431065b414daab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Tue, 17 Dec 2024 15:14:41 +0200 Subject: [PATCH] Run GH action with Java 21 Eclipse Platform requires Java 21 now (https://www.eclipse.org/lists/cross-project-issues-dev/msg20005.html) which will make licensecheck fail if run on projects building against latest Eclipse Platform and every project will have to learn and apply a change like https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/pull/2674 to unbreak. This PR will keep things "just working" for downstream projects. --- .github/workflows/mavenLicenseCheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mavenLicenseCheck.yml b/.github/workflows/mavenLicenseCheck.yml index 82194e44..1f3d5f06 100644 --- a/.github/workflows/mavenLicenseCheck.yml +++ b/.github/workflows/mavenLicenseCheck.yml @@ -43,7 +43,7 @@ on: description: 'The version of Java set up to run the license-check build' type: string required: false - default: '17' + default: '21' secrets: gitlabAPIToken: description: 'The authentication token (scope: api) from gitlab.eclipse.org of the calling repository. Only required if license vetting is requested'