chore(deps): update actions/setup-java action to v4.5.0 #246
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: 2022-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-FileCopyrightText: 2022-2023 Tobias Kaminsky <[email protected] | |
# SPDX-FileCopyrightText: 2022-2023 Álvaro Brey <[email protected]> | |
# SPDX-FileCopyrightText: 2023 Andy Scherzinger <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Lint workflow files | |
on: | |
pull_request: | |
branches: | |
- main | |
# Declare default permissions as read only. | |
permissions: read-all | |
concurrency: | |
group: lint-android-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Download actionlint | |
run: | | |
cd /tmp | |
wget https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash | |
chmod +x ./download-actionlint.bash && ./download-actionlint.bash | |
- name: Lint repo workflows | |
run: /tmp/actionlint | |
- name: Lint synced workflows | |
run: | | |
cd config/workflows | |
/tmp/actionlint ./* |