Update library to 2024-09-22 #4312
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-FileCopyrightText: 2023 Tobias Kaminsky <[email protected]> | |
# SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only | |
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Detect SNAPSHOT | |
run: scripts/analysis/detectWrongSettings.sh |