diff --git a/.github/workflows/desktop.yml b/.github/workflows/desktop.yml index f51ce5b9e6..5ab4c7089a 100644 --- a/.github/workflows/desktop.yml +++ b/.github/workflows/desktop.yml @@ -361,6 +361,11 @@ jobs: - name: Setup Firestore Emulator run: | npm install -g firebase-tools + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' - name: Run Desktop integration tests run: | cp scripts/gha/integration_testing/google-services.json testapps-desktop-ubuntu-latest-openssl/firestore/google-services.json diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 67189598b5..83c00e4ae3 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -893,6 +893,11 @@ jobs: command: | pip install -r scripts/gha/requirements.txt python scripts/gha/restore_secrets.py --passphrase "${{ secrets.TEST_SECRET }}" --artifact "testapps/testapps-desktop-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.ssl_variant }}" + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' - name: Run Desktop integration tests env: USE_FIRESTORE_EMULATOR: true