-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[infrastructure] Updated the github java install and cache actions to…
… the latest version
- Loading branch information
1 parent
ca22592
commit b082efe
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,13 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3.9.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 21 | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v4.1.2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,13 @@ jobs: | |
- uses: actions/[email protected] | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3.9.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 21 | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v4.1.2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
- uses: actions/[email protected] | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3.9.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 21 | ||
|
@@ -29,7 +29,7 @@ jobs: | |
server-password: MAVEN_CENTRAL_PASSWORD | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v4.1.2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
|
@@ -44,7 +44,7 @@ jobs: | |
run: xvfb-run mvn package -P release -Dgpg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3.9.0 | ||
uses: actions/setup-java@v4.5.0 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 21 | ||
|