summaryrefslogtreecommitdiff
path: root/.github/workflows/checks.yml
diff options
context:
space:
mode:
authorTaco <SkytkRSfan3895@gmail.com>2024-03-04 16:17:44 -0500
committerGitHub <noreply@github.com>2024-03-04 22:17:44 +0100
commitc06a3a6d27c61910e06041c70d9113a7ef4c4c5f (patch)
tree4ef68e65b0fb09c20277b10ab56128a18b4dcbc4 /.github/workflows/checks.yml
parent60f3d77eb2d41d49ad6fd999c39f5792f804a17e (diff)
downloadAntennaPod-c06a3a6d27c61910e06041c70d9113a7ef4c4c5f.zip
Update AGP and Gradle (#6954)
Diffstat (limited to '.github/workflows/checks.yml')
-rw-r--r--.github/workflows/checks.yml18
1 files changed, 14 insertions, 4 deletions
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index c7a21245d..d56ec7ace 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -2,9 +2,9 @@ name: Checks
on:
pull_request:
- types: [opened, synchronize, reopened]
+ types: [ opened, synchronize, reopened ]
push:
- branches: [master, develop]
+ branches: [ master, develop ]
jobs:
code-style:
@@ -50,6 +50,11 @@ jobs:
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
+ - name: Set up JDK 17
+ uses: actions/setup-java@v4
+ with:
+ distribution: 'temurin'
+ java-version: '17'
- name: Cache Gradle
uses: actions/cache@v4
with:
@@ -84,6 +89,11 @@ jobs:
upload-artifact: false
steps:
- uses: actions/checkout@v4
+ - name: Set up JDK 17
+ uses: actions/setup-java@v4
+ with:
+ distribution: 'temurin'
+ java-version: '17'
- name: Cache Gradle
uses: actions/cache@v4
with:
@@ -113,11 +123,11 @@ jobs:
api-level: 30
steps:
- uses: actions/checkout@v4
- - name: Set up JDK 11
+ - name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
- java-version: '11'
+ java-version: '17'
- name: Cache Gradle
uses: actions/cache@v4
with: