diff options
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 7abda864..93a2e1fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
| @@ -4,7 +4,7 @@ jobs: | |||
| 4 | build: | 4 | build: |
| 5 | strategy: | 5 | strategy: |
| 6 | matrix: | 6 | matrix: |
| 7 | java: [16-jdk] | 7 | java: [17-jdk] |
| 8 | runs-on: ubuntu-20.04 | 8 | runs-on: ubuntu-20.04 |
| 9 | container: | 9 | container: |
| 10 | image: openjdk:${{ matrix.java }} | 10 | image: openjdk:${{ matrix.java }} |
| @@ -12,4 +12,4 @@ jobs: | |||
| 12 | steps: | 12 | steps: |
| 13 | - uses: actions/checkout@v1 | 13 | - uses: actions/checkout@v1 |
| 14 | - uses: gradle/wrapper-validation-action@v1 | 14 | - uses: gradle/wrapper-validation-action@v1 |
| 15 | - run: ./gradlew build --stacktrace | 15 | - run: ./gradlew build --stacktrace --warning-mode fail |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ea389b6..48aacde3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml | |||
| @@ -4,7 +4,7 @@ jobs: | |||
| 4 | build: | 4 | build: |
| 5 | runs-on: ubuntu-20.04 | 5 | runs-on: ubuntu-20.04 |
| 6 | container: | 6 | container: |
| 7 | image: openjdk:16-jdk | 7 | image: openjdk:17-jdk |
| 8 | options: --user root | 8 | options: --user root |
| 9 | steps: | 9 | steps: |
| 10 | - uses: actions/checkout@v1 | 10 | - uses: actions/checkout@v1 |