From 1f5a7b1f587be7f5e75b5dfbc52f768972439109 Mon Sep 17 00:00:00 2001 From: vvatanabe Date: Sun, 3 Apr 2022 14:40:51 +0900 Subject: [PATCH] temporarily remove test with JDK 17 (#119) --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6455eee..473b0a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: ['8', '11', '17'] + java: [ + '8', + '11', + # '17' Refs: https://github.com/nulab/zxcvbn4j/issues/118 + ] fail-fast: false name: Build and test on JDK ${{ matrix.Java }} if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"