Skip to content

Commit

Permalink
CI/CD: Update GitHub Actions versions, fixes outdated warnings, force…
Browse files Browse the repository at this point in the history
… Java from Eclipse
  • Loading branch information
gsantner committed May 19, 2024
1 parent a210dcc commit 9b30892
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-android-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,26 @@ jobs:
steps:

- name: "Checkout: Code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Checkout: Code (PR)"
uses: actions/checkout@v3
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: 11
distribution: "temurin"

- name: "Setup: Install additional dependencies"
run: sudo apt-get install -y ispell

- name: "Cache: Gradle"
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.gradle
Expand Down

0 comments on commit 9b30892

Please sign in to comment.