Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: '8'
cache: 'maven'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cron-job-its.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'
distribution: 'corretto'

- name: Cache Maven m2 repository
id: maven
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'
distribution: 'corretto'
cache: maven

- name: maven build # needed to rebuild incase of maven snapshot resolution fails
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-revised-its.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: ${{ inputs.build_jdk }}
distribution: 'zulu'
distribution: 'corretto'

- name: Restore Maven repository
id: maven-restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-standard-its.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: ${{ inputs.runtime_jdk }}
distribution: 'zulu'
distribution: 'corretto'

- name: Restore Maven repository
id: maven-restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# different cache key since we cannot reuse it across commits.
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: ${{ inputs.jdk }}

# the build step produces SNAPSHOT artifacts into the local maven repository,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standard-its.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'
distribution: 'corretto'

# the build step produces SNAPSHOT artifacts into the local maven repository,
# we include github.sha in the cache key to make it specific to that build/jdk
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: ${{ matrix.java }}
cache: 'maven'

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: '8'
cache: 'maven'

Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: '8'
cache: 'maven'

Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: '17'
cache: 'maven'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-and-integration-tests-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
# different cache key since we cannot reuse it across commits.
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: ${{ matrix.jdk }}

# the build step produces SNAPSHOT artifacts into the local maven repository,
Expand Down