Skip to content

Update actions/download-artifact action from v5 to v7 (major v7) #94

Update actions/download-artifact action from v5 to v7 (major v7)

Update actions/download-artifact action from v5 to v7 (major v7) #94

Workflow file for this run

---
name: Verify Quality Checks
on:
pull_request:
types: [assigned, opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
renovate: ${{ steps.filter.outputs.renovate }}
steps:
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
renovate:
- '.github/renovate.json'
- '.github/workflows/renovate-verify.yml'
verify-renovate:
needs: changes
if: ${{ needs.changes.outputs.renovate == 'true' }}
name: Renovate official check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- run: npx --package renovate -c 'renovate-config-validator'
pre-commit:
name: Pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: pip
- name: Install dependencies
run: pip install -U pip setuptools wheel pre-commit
- uses: actions/cache@v5
with:
path: ~/.cache/pre-commit/
key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit hooks
run: pre-commit run --all-files --show-diff-on-failure