Skip to content

Commit 72d27de

Browse files
Bump actions/setup-java from 1 to 2.3.0
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 2.3.0. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v1...v2.3.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6f3f1a4 commit 72d27de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up JDK 1.11
18-
uses: actions/setup-java@v1
18+
uses: actions/setup-java@v2.3.0
1919
with:
2020
java-version: 1.11
2121
- name: Create custom Maven Settings.xml

.github/workflows/release-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
shell: bash
2525
# Extra the tagname form the git reference, value of GITHUB_REF will be something like refs/tags/<tag_name>.
2626
run: echo "##[set-output name=tagname;]$(echo ${GITHUB_REF##*/})"
27-
- uses: actions/setup-java@v2
27+
- uses: actions/setup-java@v2.3.0
2828
with:
2929
java-version: '11'
3030
distribution: 'adopt'

.github/workflows/sonarcloud-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
fetch-depth: 0
1919
- name: Set up JDK 11
20-
uses: actions/setup-java@v1
20+
uses: actions/setup-java@v2.3.0
2121
with:
2222
java-version: 1.11
2323
- name: Cache SonarCloud packages

0 commit comments

Comments
 (0)