From 1482e75c4769b2a715527d4ca3145750fa455aa3 Mon Sep 17 00:00:00 2001 From: Eric K Richardson Date: Mon, 15 Jan 2024 10:29:08 -0800 Subject: [PATCH] Remove Java 8 from CI (#133) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea539f6..51c1247 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - java: [ '8', '11', '17' ] + java: [ '11', '17' ] name: Test using Java ${{ matrix.java }} steps: - uses: actions/checkout@v3