mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
0e1612d57c
Update actions/setup-java action to v4
26 lines
763 B
YAML
26 lines
763 B
YAML
name: "Detect wrong settings"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
concurrency:
|
|
group: detect-wrong-settings-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
detectWrongSettings:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: 17
|
|
- name: Detect SNAPSHOT
|
|
run: scripts/analysis/detectWrongSettings.sh
|