Skip to content

Commit

Permalink
Merge pull request #14 from gocd/dependabot/github_actions/actions/se…
Browse files Browse the repository at this point in the history
…tup-java-2.3.1

Bump actions/setup-java from 1 to 2.3.1
  • Loading branch information
chadlwilson authored Nov 1, 2021
2 parents 685265d + 698e1ad commit 3660233
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pr_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 15
distribution: adopt
- name: Build with Gradle
run: ./gradlew assemble check
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 15
distribution: adopt
- name: Release
run: ./gradlew verifyExpRelease githubRelease
5 changes: 3 additions & 2 deletions .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2.3.1
with:
java-version: 15
- name: Test with Gradle
Expand All @@ -29,8 +29,9 @@ jobs:
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 15
distribution: adopt
- name: Test with Gradle
run: ./gradlew githubRelease

0 comments on commit 3660233

Please sign in to comment.