From 3234d66caad4631b4b8eee450f63afa9ecd82bb2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:08:39 +0000 Subject: [PATCH] Bump actions/setup-java from 3.13.0 to 4.0.0 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.13.0 to 4.0.0. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v3.13.0...v4.0.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/maven-publish.yml | 2 +- .github/workflows/verify.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 426cca994..e42826a52 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -45,7 +45,7 @@ jobs: # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main - name: Setup Java JDK - uses: actions/setup-java@v3.13.0 + uses: actions/setup-java@v4.0.0 with: # The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28 java-version: 1.8 diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index 62b322a68..c735f30f0 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -60,7 +60,7 @@ jobs: # ] - name: 4. Set up JDK - uses: actions/setup-java@v3.13.0 + uses: actions/setup-java@v4.0.0 with: java-version: '8' distribution: 'adopt' diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index bba20c951..434044150 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -23,7 +23,7 @@ jobs: with: maven-version: 3.5.4 - name: Set up JDK 8 - uses: actions/setup-java@v3.13.0 + uses: actions/setup-java@v4.0.0 with: java-version: '8' distribution: 'adopt'