Skip to content

Commit

Permalink
Merge pull request #191 from jamezp/issue190
Browse files Browse the repository at this point in the history
[190] Do not run jobs on Java 11 as WildFly is migrating to require J…
  • Loading branch information
jamezp authored Oct 22, 2024
2 parents 055bd9f + e8dacd5 commit b142003
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/authentication-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -38,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17', '21']
java: ['17', '21']

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/concurrency-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -38,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17', '21']
java: ['17', '21']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/core-profile-tck-ee11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jakarta-xml-binding-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11']
java: ['17']

# Runner steps
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/security-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -38,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['11', '17']
java: ['17', '21']

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit b142003

Please sign in to comment.