We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef72c0 commit 9541a01Copy full SHA for 9541a01
.github/workflows/emulator-test.yml
@@ -18,11 +18,15 @@ jobs:
18
with:
19
project_id: dummy-project
20
install_components: 'beta'
21
- - name: Install Java & netcat (required by emulator)
+ - name: Setup Java 21 (Temurin) and netcat
22
+ uses: actions/setup-java@v4
23
+ with:
24
+ distribution: 'temurin'
25
+ java-version: '21'
26
+ - name: Install netcat
27
run: |
28
sudo apt-get update
- # Datastore emulator requires a JRE on the runner
- sudo apt-get install -y default-jre-headless netcat-openbsd
29
+ sudo apt-get install -y netcat-openbsd
30
java -version || true
31
- name: Install Datastore emulator component
32
0 commit comments