From cfa7f7ef62b724761e52f079229dddc57ab9bdf1 Mon Sep 17 00:00:00 2001 From: Tomasz Godzik Date: Tue, 6 Aug 2024 15:22:08 +0200 Subject: [PATCH] chore: Fix CI on MacOs Latest versions of the runners run on M1 and M2, which don't have JDK 8 available for them --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 682526e..41de02a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: java: [ '8', '17' ] - os: [ 'ubuntu-latest', 'macOS-latest' ] + os: [ 'ubuntu-latest', 'macOS-13' ] steps: - name: checkout the repo