Skip to content

Commit

Permalink
Merge pull request #10043 from orientechnologies/dependabot/github_ac…
Browse files Browse the repository at this point in the history
…tions/actions/setup-java-4

chore(deps): bump actions/setup-java from 3 to 4
  • Loading branch information
tglman authored Dec 4, 2023
2 parents d5c3691 + 79eaaf2 commit 1c5233f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central Repository
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{matrix.java-version}} PR
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{matrix.java-version}}
distribution: 'temurin'
Expand All @@ -51,14 +51,14 @@ jobs:
- uses: actions/checkout@v4
- name: Set up JDK ${{matrix.java-version}} PR
if: github.event_name == 'pull_request'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{matrix.java-version}}
distribution: 'temurin'
# Step that does that actual cache save and restore
- name: Set up JDK ${{matrix.java-version}} Branch
if: github.event_name != 'pull_request'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{matrix.java-version}}
distribution: 'temurin'
Expand Down

0 comments on commit 1c5233f

Please sign in to comment.