From 2fed3f7e90d801b8206f301f64a67992b49901e3 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 17 Jun 2022 13:43:42 +0100 Subject: [PATCH] Update github actions with latest versions. Closes #12294 --- .github/workflows/android.yml | 7 ++++--- .github/workflows/docker.yml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index b781f1715..d9dbcf9ba 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -14,11 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: set up JDK 11 - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: + distribution: temurin java-version: 11 - name: Validate Gradle Wrapper @@ -32,7 +33,7 @@ jobs: - name: Archive reports for failed build if: ${{ failure() }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: reports path: '*/build/reports' diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f6bd4d2c1..47eff1513 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build image run: cd reproducible-builds && docker build -t signal-android . && cd ..