From 8862d6b43582e73326b56527151e9ff616106d4e Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Wed, 31 Jan 2024 22:31:03 +0100 Subject: [PATCH] fix: use JVM v17 in GitHub actions --- .github/workflows/fastlane.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/fastlane.yml b/.github/workflows/fastlane.yml index 348bd91..62f2ce9 100644 --- a/.github/workflows/fastlane.yml +++ b/.github/workflows/fastlane.yml @@ -7,6 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - uses: actions/setup-java@v4 + with: + distribution: 'zulu' # See 'Supported distributions' for available options + java-version: '17' - name: Set outputs id: vars run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"