Update dependency limesurvey to v7.0.8-0 (#3211) #10992
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: 2025 Suguru Hirahara | |
| # SPDX-FileCopyrightText: 2026 Slavi Pantaleev | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| --- | |
| name: pre-commit | |
| on: [push, pull_request] # yamllint disable-line rule:truthy | |
| permissions: | |
| contents: read | |
| jobs: | |
| prek: | |
| name: Run prek hooks | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker.io/archlinux:base-devel | |
| steps: | |
| # git must be installed before checkout so it does a proper clone | |
| # (with .git directory) instead of a tarball download. | |
| - name: Install git | |
| run: pacman -Sy --noconfirm git | |
| - name: Checkout code | |
| uses: actions/checkout@v7.0.1 | |
| - name: Restore prek cache | |
| uses: actions/cache@v6.1.0 | |
| with: | |
| path: var/prek | |
| key: arch-prek-v1-${{ hashFiles('.pre-commit-config.yaml') }} | |
| - name: Install dependencies | |
| run: pacman -S --noconfirm --needed just mise python | |
| - name: Run prek hooks | |
| run: | | |
| # The checkout action sets safe.directory using its own bundled | |
| # git, which is separate from the pacman-installed git that prek uses. | |
| git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| just prek-run-on-all |