deps(workflows): bump actions/checkout from 4 to 6 (#194)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Xuehai Pan <XuehaiPan@pku.edu.cn>
This commit is contained in:
dependabot[bot] 2025-11-25 00:30:12 +08:00 committed by GitHub
parent 5a4f1d52ea
commit 8218bbd48b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 12 additions and 18 deletions

View file

@ -46,7 +46,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: "recursive"
fetch-depth: 0
@ -129,7 +129,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: "recursive"
fetch-depth: 0
@ -141,8 +141,7 @@ jobs:
update-environment: true
- name: Upgrade pip
run: |
python -m pip install --upgrade pip setuptools
run: python -m pip install --upgrade pip setuptools
- name: Set __release__
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'

View file

@ -61,7 +61,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

View file

@ -23,7 +23,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
@ -34,12 +34,10 @@ jobs:
update-environment: true
- name: Upgrade pip
run: |
python -m pip install --upgrade pip setuptools
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
run: python -m pip install -r requirements.txt
- name: Import tests
run: |
@ -63,8 +61,7 @@ jobs:
)
- name: Install linters
run: |
python -m pip install --upgrade pre-commit pylint[spelling] mypy typing-extensions
run: python -m pip install --upgrade pre-commit 'pylint[spelling]' mypy typing-extensions
- name: pre-commit
run: |