Skip to content

Commit

Permalink
Improve pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Sep 15, 2022
1 parent 80c03e9 commit 0e545a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with: { ref: develop }
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Build Project
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
with: { ref: develop }
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Test Publishing
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Build Project
Expand All @@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Test Publishing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Build Project
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Build Project
Expand All @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin, cache: gradle }
with: { java-version: 11, distribution: temurin, cache: gradle }

# PROCESS
- name: Publish Packages
Expand Down

0 comments on commit 0e545a9

Please sign in to comment.