Skip to content

Commit

Permalink
[BP] Bump actions/setup-java from 4.1.0 to 4.2.1
Browse files Browse the repository at this point in the history
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4.1.0 to 4.2.1.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v4.1.0...v4.2.1)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Backport of geonetwork#7870
Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and juanluisrp committed Jun 19, 2024
1 parent 02312d3 commit 9b18dd4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v2

- name: Setup Java JDK
uses: actions/setup-java@v2.3.1
uses: actions/setup-java@v4.2.1
with:
java-version: 8
# Java distribution. See the list of supported distributions in README file
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-18.04
- os: ubuntu-22.04
jdk: 8
steps:
- uses: actions/checkout@v2
Expand All @@ -21,9 +21,11 @@ jobs:
fetch-depth: 500
submodules: 'recursive'
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4.2.1
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
cache: 'maven'
- name: Set up Maven
uses: stCarolas/setup-maven@v4
with:
Expand All @@ -45,17 +47,19 @@ jobs:
find ~/.m2/repository -name "*3.8*" -type d | xargs rm -rf {}
QA:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
# 500 commits, set to 0 to get all
fetch-depth: 500
submodules: 'recursive'
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4.2.1
with:
distribution: 'temurin'
java-version: 8
cache: 'maven'
- name: Set up Maven
uses: stCarolas/setup-maven@v4
with:
Expand Down

0 comments on commit 9b18dd4

Please sign in to comment.