Skip to content

Commit

Permalink
Actually regnereate gha files
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuereth committed May 20, 2023
1 parent 2a29fdf commit 53d0e41
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,27 @@ jobs:
matrix:
os: [ubuntu-latest]
scala: [3.2.2]
java: [temurin@1.8, temurin@1.11]
java: [temurin@17.0, temurin@11.0]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup Java (temurin@1.8)
if: matrix.java == 'temurin@1.8'
- name: Setup Java (temurin@17.0)
if: matrix.java == 'temurin@17.0'
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 1.8
java-version: 17.0

- name: Setup Java (temurin@1.11)
if: matrix.java == 'temurin@1.11'
- name: Setup Java (temurin@11.0)
if: matrix.java == 'temurin@11.0'
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 1.11
java-version: 11.0

- name: Cache sbt
uses: actions/cache@v2
Expand Down Expand Up @@ -71,27 +71,27 @@ jobs:
matrix:
os: [ubuntu-latest]
scala: [3.2.2]
java: [temurin@1.8]
java: [temurin@17.0]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup Java (temurin@1.8)
if: matrix.java == 'temurin@1.8'
- name: Setup Java (temurin@17.0)
if: matrix.java == 'temurin@17.0'
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 1.8
java-version: 17.0

- name: Setup Java (temurin@1.11)
if: matrix.java == 'temurin@1.11'
- name: Setup Java (temurin@11.0)
if: matrix.java == 'temurin@11.0'
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 1.11
java-version: 11.0

- name: Cache sbt
uses: actions/cache@v2
Expand Down

0 comments on commit 53d0e41

Please sign in to comment.