From 732a70653be0ce5ab80f3f10f04627d748c03626 Mon Sep 17 00:00:00 2001 From: Luca Stefani Date: Fri, 4 Aug 2023 10:50:45 +0200 Subject: [PATCH] Aperture: Update workflows versions They use node12 that is deprecated. Change-Id: I88864db207ffbc353ee4fc05477c98e962c3e158 --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 138752f44..a83988f75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,12 +8,13 @@ jobs: 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