From 4e858b09214f2c2ba594800b455b5bc77638f298 Mon Sep 17 00:00:00 2001 From: "James R. Perkins" Date: Tue, 22 Oct 2024 09:24:39 -0700 Subject: [PATCH 1/2] [190] Do not run jobs on Java 11 as WildFly is migrating to require Java 17 as a minimum. Signed-off-by: James R. Perkins --- .github/workflows/authentication-tck.yml | 2 +- .github/workflows/concurrency-tck.yml | 2 +- .github/workflows/jakarta-xml-binding-tck.yml | 2 +- .github/workflows/security-tck.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/authentication-tck.yml b/.github/workflows/authentication-tck.yml index 04c67ce..17bbf4b 100644 --- a/.github/workflows/authentication-tck.yml +++ b/.github/workflows/authentication-tck.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - java: ['11', '17', '21'] + java: ['17', '21'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/concurrency-tck.yml b/.github/workflows/concurrency-tck.yml index ac202a7..74ffbce 100644 --- a/.github/workflows/concurrency-tck.yml +++ b/.github/workflows/concurrency-tck.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - java: ['11', '17', '21'] + java: ['17', '21'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/jakarta-xml-binding-tck.yml b/.github/workflows/jakarta-xml-binding-tck.yml index 832a4d5..64113b0 100644 --- a/.github/workflows/jakarta-xml-binding-tck.yml +++ b/.github/workflows/jakarta-xml-binding-tck.yml @@ -33,7 +33,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - java: ['11'] + java: ['17'] # Runner steps steps: diff --git a/.github/workflows/security-tck.yml b/.github/workflows/security-tck.yml index 1ecbd03..fccc2a0 100644 --- a/.github/workflows/security-tck.yml +++ b/.github/workflows/security-tck.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - java: ['11', '17'] + java: ['17', '21'] steps: - uses: actions/checkout@v4 From e8dacd5d4fb39e5c1e87bdc651fe1e55a524bc23 Mon Sep 17 00:00:00 2001 From: "James R. Perkins" Date: Tue, 22 Oct 2024 09:30:36 -0700 Subject: [PATCH 2/2] Ensure workflows run when the workflow file has changed. Signed-off-by: James R. Perkins --- .github/workflows/authentication-tck.yml | 2 ++ .github/workflows/concurrency-tck.yml | 2 ++ .github/workflows/core-profile-tck-ee11.yml | 2 ++ .github/workflows/security-tck.yml | 2 ++ 4 files changed, 8 insertions(+) diff --git a/.github/workflows/authentication-tck.yml b/.github/workflows/authentication-tck.yml index 17bbf4b..da0834b 100644 --- a/.github/workflows/authentication-tck.yml +++ b/.github/workflows/authentication-tck.yml @@ -8,11 +8,13 @@ on: branches: - 'main' paths: + - '.github/workflows/authentication-tck.yml' - 'authentication/**' pull_request: branches: - 'main' paths: + - '.github/workflows/authentication-tck.yml' - 'authentication/**' types: - opened diff --git a/.github/workflows/concurrency-tck.yml b/.github/workflows/concurrency-tck.yml index 74ffbce..a77ada4 100644 --- a/.github/workflows/concurrency-tck.yml +++ b/.github/workflows/concurrency-tck.yml @@ -8,11 +8,13 @@ on: branches: - 'main' paths: + - '.github/workflows/concurrency-tck.yml' - 'concurrency/**' pull_request: branches: - 'main' paths: + - '.github/workflows/concurrency-tck.yml' - 'concurrency/**' types: - opened diff --git a/.github/workflows/core-profile-tck-ee11.yml b/.github/workflows/core-profile-tck-ee11.yml index b53e23a..f69a00d 100644 --- a/.github/workflows/core-profile-tck-ee11.yml +++ b/.github/workflows/core-profile-tck-ee11.yml @@ -9,11 +9,13 @@ on: branches: - 'main' paths: + - '.github/workflows/core-profile-tck-ee11.yml' - 'core-profile/**' pull_request: branches: - 'main' paths: + - '.github/workflows/core-profile-tck-ee11.yml' - 'core-profile/**' schedule: - cron: '0 0 * * *' # Every day at 00:00 UTC diff --git a/.github/workflows/security-tck.yml b/.github/workflows/security-tck.yml index fccc2a0..a936183 100644 --- a/.github/workflows/security-tck.yml +++ b/.github/workflows/security-tck.yml @@ -8,11 +8,13 @@ on: branches: - '**' paths: + - '.github/workflows/security-tck.yml' - 'security/**' pull_request: branches: - '**' paths: + - '.github/workflows/security-tck.yml' - 'security/**' types: - opened