From 1a1385301b4200e7f9357ca37a7a1925765d23e8 Mon Sep 17 00:00:00 2001 From: Gregor Santner Date: Sun, 19 May 2024 10:12:58 +0200 Subject: [PATCH] CI/CD: Update GitHub Actions versions, fixes outdated warnings, force Java from Eclipse (cherry picked from commit 9b308928467cf9c1b65f8397a8873c2c7e845433) Conflicts: .github/workflows/build-android-project.yml --- .github/workflows/build-android-project.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-android-project.yml b/.github/workflows/build-android-project.yml index a0842cc9..71140831 100644 --- a/.github/workflows/build-android-project.yml +++ b/.github/workflows/build-android-project.yml @@ -21,18 +21,15 @@ jobs: runs-on: ubuntu-latest steps: - - name: "Checkout: Code" - uses: actions/checkout@v2 - - name: "Checkout: Code (PR)" - uses: actions/checkout@v2 + uses: actions/checkout@v4 if: "contains(github.event_name, 'pull_request')" with: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} - name: "Setup: Java" - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: java-version: 1.8 @@ -40,7 +37,7 @@ jobs: run: sudo apt-get install -y ispell - name: "Cache: Gradle" - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle