Skip to content

Commit

Permalink
[infrastructure] Updated the github java install and cache actions to…
Browse files Browse the repository at this point in the history
… the latest version
  • Loading branch information
meronbrouwer committed Nov 26, 2024
1 parent ca22592 commit b082efe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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') }}
Expand All @@ -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
Expand Down

0 comments on commit b082efe

Please sign in to comment.