Skip to content

Commit

Permalink
chore(deps): Bump actions/setup-java from v1 to v2 (#203)
Browse files Browse the repository at this point in the history
Bumps [actions/setup-java](https://github.com/actions/setup-java) from v1 to v2.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v1...8764a52)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 9, 2021
1 parent 832377b commit 7f23857
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
fetch-depth: 0

- name: set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 8

- name: Cache .gradle
Expand Down Expand Up @@ -73,8 +74,9 @@ jobs:
fetch-depth: 0

- name: set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11

- name: Pre-compile plugin using gradle wrapper
Expand Down Expand Up @@ -103,8 +105,9 @@ jobs:
fetch-depth: 0

- name: set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11

- name: Pre-compile plugin using gradle wrapper
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
fetch-depth: 0

- name: set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11

- name: Cache .gradle
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
fetch-depth: 0

- name: set up Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 8

- name: Build app with Gradle
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
fetch-depth: 0

- name: set up Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 8

- name: Build app with Gradle
Expand Down

0 comments on commit 7f23857

Please sign in to comment.