Skip to content

Commit

Permalink
Update actions/setup-java action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 2, 2024
1 parent 3d5b671 commit 732d521
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oss-release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven

- name: Setup Maven Central
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with: # overwrite settings.xml
java-version: '17'
distribution: 'adopt'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oss-snapshot-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven

- name: Setup Maven Central
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with: # overwrite settings.xml
java-version: '17'
distribution: 'adopt'
Expand Down

0 comments on commit 732d521

Please sign in to comment.