[stable-3.36] fix: use positional formatter specifiers for auto_upload_worker_start_text
#13439
Workflow file for this run
This file contains hidden or 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 <tobias@kaminsky.me> | |
| # 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-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: "temurin" | |
| java-version: 21 | |
| - name: Detect SNAPSHOT | |
| run: scripts/analysis/detectWrongSettings.sh |