Skip to content

Commit

Permalink
Update CI setup - add JDK 21, bump versions on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotn authored and Ladicek committed Nov 28, 2023
1 parent 6c020d3 commit 3e61952
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Jakarta Contexts and Dependency Injection CI

on:
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:
Expand All @@ -11,12 +11,13 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '11', '17' ]
java: [ '11', '17', '21' ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.1.1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v3.13.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: "Maven install"
run: |
Expand Down

0 comments on commit 3e61952

Please sign in to comment.