Skip to content

Commit

Permalink
Checkout/Java action v4, Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
fhoeben committed Dec 17, 2024
1 parent bd01e97 commit 130374d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Java and Maven
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'zulu'
cache: 'maven'

Expand All @@ -40,9 +40,9 @@ jobs:
if-no-files-found: error

- name: Set up Apache Maven Central
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with: # running setup-java again overwrites the settings.xml
java-version: '8'
java-version: '11'
distribution: 'zulu'
cache: 'maven'
server-id: ossrh
Expand All @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: download pom
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -116,12 +116,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Java and Maven
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'zulu'
cache: 'maven'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Java and Maven
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'zulu'
cache: maven

Expand Down

0 comments on commit 130374d

Please sign in to comment.