Skip to content

Commit cb7ed6d

Browse files
dependabot[bot]Kyle
andauthored
Bump actions/setup-java from 1 to 2.3.0 (#108)
* 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] <support@github.com> * fix Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kyle <[hopeman1986@gmail.com]>
1 parent a2dc6c8 commit cb7ed6d

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v2
2828
- name: Set up JDK
29-
uses: actions/setup-java@v1
29+
uses: actions/setup-java@v2.3.0
3030
with:
31-
java-version: 1.8
31+
distribution: 'adopt'
32+
java-version: '11'
33+
cache: 'gradle'
3234
- name: Lint
3335
run: make lint
3436
- name: Test

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ jobs:
3030
- name: Checkout
3131
uses: actions/checkout@v2
3232
- name: Set up JDK
33-
uses: actions/setup-java@v1
33+
uses: actions/setup-java@v2.3.0
3434
with:
35-
java-version: 1.8
35+
distribution: 'adopt'
36+
java-version: '11'
37+
cache: 'gradle'
3638
- name: Publish
3739
run: |
3840
export IS_RELEASE=${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') }}

0 commit comments

Comments
 (0)