From f492a34847f09658901509121d32729a91e8cb4b Mon Sep 17 00:00:00 2001 From: Jack Smith Date: Mon, 24 Mar 2025 10:04:14 -0400 Subject: [PATCH 1/2] Target java 17 with 2.8.0-SNAPSHOT --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index c4e7813ae..e295ac84d 100644 --- a/pom.xml +++ b/pom.xml @@ -10,12 +10,12 @@ com.hubspot.jinjava jinjava - 2.7.5-SNAPSHOT + 2.8.0-SNAPSHOT Jinja templating engine implemented in Java - 8 - 8 + 17 + 17 0.8.3 3.0.1 From 8a1e234ce8e3b8bc00b34329ec10bb64b3d1a6cd Mon Sep 17 00:00:00 2001 From: Jack Smith Date: Mon, 24 Mar 2025 10:33:54 -0400 Subject: [PATCH 2/2] Remove 11 from workflow --- .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 64d1afa0d..9b957b071 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ 11, 17 ] + java: [ 17 ] name: jdk-${{ matrix.java }} steps: - uses: actions/checkout@v3