From 62b303aeef281f8b6ce8b14d3b08839f8581e256 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 19:28:05 +0200 Subject: [PATCH] chore(deps): bump actions/setup-java from 1 to 3 (#318) * chore(deps): bump actions/setup-java from 1 to 3 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * migrate action `setup-java` >= v2 Signed-off-by: Jan Kowalleck --------- Signed-off-by: dependabot[bot] Signed-off-by: Jan Kowalleck Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jan Kowalleck --- .github/workflows/cibuild.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 1c9f7c80..04519f12 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -14,11 +14,13 @@ jobs: - name: Checkout # see https://github.com/actions/checkout uses: actions/checkout@v4 - - name: Set up JDK 1.8 + - name: Set up JDK # see https://github.com/actions/setup-java - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: - java-version: 1.8 + java-version: '8' + distribution: 'zulu' + java-package: jdk - name: Build with Maven run: | cd tools @@ -49,4 +51,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: XML-Schema-documentation - path: docgen/xml/docs \ No newline at end of file + path: docgen/xml/docs