diff options
| author | Marat Radchenko <marat@slonopotamus.org> | 2023-11-10 12:23:23 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-10 12:23:23 +0300 |
| commit | 996646f39bcefbc72e3d2a097478312007792315 (patch) | |
| tree | fbf6d92ae1c88647d0ffbc921012e5b8cda2ec0d | |
| parent | f06d2caa534479d1bf73c77d061dafa13f12949e (diff) | |
Fix macOS CI (#448)
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e141e42..24d57a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Set up Java + uses: actions/setup-java@v3 + with: + distribution: 'adopt' + java-version: '17' - name: Set up Asciidoctor if: matrix.asciidoctor != '' run: echo "ASCIIDOCTOR_VERSION=${{ matrix.asciidoctor }}" >> "${GITHUB_ENV}" |
