diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-11 17:55:29 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-11 17:55:29 +0100 |
| commit | ecfd503a4233f9f1a496772aeb1d53f037321d65 (patch) | |
| tree | 54d9705f0fedacd33b6e8e4525943f0cb8f15522 /.github/workflows | |
| parent | 0d4ce1906d84f2ef9b9cf7da73189d0d71bee46f (diff) | |
ci: Build with Java 17
This change updates the CI workflows to build the simulator with Java 17
by default, which is the latest available release.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d72ad63e..98521e71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - java: [11, 16] + java: [11, 17] include: - os: windows-latest - java: 16 + java: 17 steps: - name: Checkout repository uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce1d2a1b..73bc3905 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ 16 ] + java: [ 17 ] steps: - name: Checkout repository uses: actions/checkout@v2 |
