From 52a1e172457fe934bbcfb8e5a216ecd1f37590fa Mon Sep 17 00:00:00 2001 From: JarrodCTaylor Date: Wed, 16 Aug 2023 13:31:03 -0500 Subject: [PATCH 1/3] Added github action to build api docs --- .github/workflows/doc-build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/doc-build.yml diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml new file mode 100644 index 0000000..1dbeae4 --- /dev/null +++ b/.github/workflows/doc-build.yml @@ -0,0 +1,10 @@ +name: Build API Docs + +on: + workflow_dispatch: + +jobs: + call-doc-build-workflow: + uses: clojure/build.ci/.github/workflows/doc-build.yml@master + with: + project: clojure/tools.deps From bddae32365d0ad23f06153f0f3768d1c1a0d9375 Mon Sep 17 00:00:00 2001 From: JarrodCTaylor Date: Wed, 30 Aug 2023 22:35:20 -0500 Subject: [PATCH 2/3] Fix EPL license link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cab61a7..e6d84e0 100644 --- a/README.md +++ b/README.md @@ -82,4 +82,4 @@ in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software. -[Eclipse Public License 1.0]: https://opensource.org/licenses/eclipse-1.0.php +[Eclipse Public License 1.0]: https://opensource.org/license/epl-1-0/ From 9ecb230428dae65f4daea736ba74371d90987f85 Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Fri, 20 Oct 2023 09:17:30 -0500 Subject: [PATCH 3/3] Add Java 21 to test matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a50cb5..250e523 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] # macOS-latest, windows-latest] - java-version: ["8", "11", "17"] + java-version: ["8", "11", "17", "21"] clojure-version: ["1.10.3", "1.11.1"] runs-on: ${{ matrix.os }} steps: