Aperture: Update workflows versions
They use node12 that is deprecated.
Change-Id: I88864db207ffbc353ee4fc05477c98e962c3e158
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 138752f..a83988f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,12 +8,13 @@
steps:
- name: Checkout repo
- uses: actions/checkout@v1
+ uses: actions/checkout@v3
- - name: Setup JDK 11
- uses: actions/setup-java@v1
+ - name: Setup JDK 17
+ uses: actions/setup-java@v3
with:
- java-version: 11
+ distribution: 'zulu'
+ java-version: 17
- name: Build with Gradle
run: ./gradlew assembleDebug