Skip to content

Commit

Permalink
More build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru committed Sep 7, 2024
1 parent a81f0ef commit 25f0f89
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
cache: 'sbt'
java-version: ${{ matrix.java-version }}
java-version: ${{ matrix.java }}
distribution: 'temurin'

- uses: actions/setup-node@v4
Expand All @@ -46,11 +46,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
cache: 'sbt'
java-version: 11
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: sbt ci-doc
run: |
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
- name: Set up JDK
uses: actions/setup-java@v4
with:
cache: 'sbt'
Expand Down Expand Up @@ -114,11 +114,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK ${{ matrix.java-version }}
- name: Set up JDK
uses: actions/setup-java@v4
with:
cache: 'sbt'
java-version: ${{ matrix.java-version }}
java-version: 11
distribution: 'temurin'

- name: Set up Ruby 2.7 (for microsite)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fetch-depth: 100
ref: ${{ github.event.inputs.ref_to_publish }}

- name: Set up JDK ${{ matrix.java-version }}
- name: Set up JDK
uses: actions/setup-java@v4
with:
cache: 'sbt'
Expand Down

0 comments on commit 25f0f89

Please sign in to comment.