build(deps): bump actions/checkout from 5 to 6 #1194
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
| name: Main CI short | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - 'release/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| linter: | |
| runs-on: Fedora | |
| strategy: | |
| matrix: | |
| python: [python3.14] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=linter-${{ matrix.python }} | |
| repo: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=repo | |
| unit: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=unit | |
| docs: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=docs | |
| decoder: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=decoder | |
| neutron: | |
| runs-on: Fedora | |
| strategy: | |
| matrix: | |
| python: [python3.9, python3.13] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=neutron | |
| uvloop: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=uvloop | |
| integration: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=integration | |
| process: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=process | |
| limits: | |
| runs-on: Linux | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=limits | |
| minimal: | |
| runs-on: Fedora | |
| strategy: | |
| matrix: | |
| python: [python3.9, python3.14] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=minimal-${{ matrix.python }} | |
| ci-self: | |
| runs-on: Fedora | |
| strategy: | |
| matrix: | |
| python: [python3.9, python3.14] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: make nox session=ci-self-${{ matrix.python }} | |
| fedora: | |
| runs-on: Fedora | |
| strategy: | |
| matrix: | |
| python: [python3.10, python3.14] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=linux-${{ matrix.python }} | |
| ubuntu: | |
| runs-on: Ubuntu | |
| strategy: | |
| matrix: | |
| python: [python3.10, python3.12] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=linux-${{ matrix.python }} | |
| fedora-core: | |
| runs-on: Fedora | |
| strategy: | |
| matrix: | |
| python: [python3.9, python3.14] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=core-${{ matrix.python }} | |
| ubuntu-core: | |
| runs-on: Ubuntu | |
| strategy: | |
| matrix: | |
| python: [python3.10, python3.12] | |
| steps: | |
| - run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v6 | |
| - run: sudo make nox session=core-${{ matrix.python }} |