mirror of
https://github.com/XuehaiPan/nvitop.git
synced 2026-05-15 14:15:55 -06:00
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:
parent
5a4f1d52ea
commit
8218bbd48b
7 changed files with 12 additions and 18 deletions
7
.github/workflows/build.yaml
vendored
7
.github/workflows/build.yaml
vendored
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
submodules: "recursive"
|
submodules: "recursive"
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
@ -129,7 +129,7 @@ jobs:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
submodules: "recursive"
|
submodules: "recursive"
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
@ -141,8 +141,7 @@ jobs:
|
||||||
update-environment: true
|
update-environment: true
|
||||||
|
|
||||||
- name: Upgrade pip
|
- name: Upgrade pip
|
||||||
run: |
|
run: python -m pip install --upgrade pip setuptools
|
||||||
python -m pip install --upgrade pip setuptools
|
|
||||||
|
|
||||||
- name: Set __release__
|
- name: Set __release__
|
||||||
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
|
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
|
||||||
|
|
|
||||||
2
.github/workflows/docker.yaml
vendored
2
.github/workflows/docker.yaml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
|
||||||
11
.github/workflows/lint.yaml
vendored
11
.github/workflows/lint.yaml
vendored
|
|
@ -23,7 +23,7 @@ jobs:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
@ -34,12 +34,10 @@ jobs:
|
||||||
update-environment: true
|
update-environment: true
|
||||||
|
|
||||||
- name: Upgrade pip
|
- name: Upgrade pip
|
||||||
run: |
|
run: python -m pip install --upgrade pip setuptools
|
||||||
python -m pip install --upgrade pip setuptools
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: python -m pip install -r requirements.txt
|
||||||
python -m pip install -r requirements.txt
|
|
||||||
|
|
||||||
- name: Import tests
|
- name: Import tests
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -63,8 +61,7 @@ jobs:
|
||||||
)
|
)
|
||||||
|
|
||||||
- name: Install linters
|
- name: Install linters
|
||||||
run: |
|
run: python -m pip install --upgrade pre-commit 'pylint[spelling]' mypy typing-extensions
|
||||||
python -m pip install --upgrade pre-commit pylint[spelling] mypy typing-extensions
|
|
||||||
|
|
||||||
- name: pre-commit
|
- name: pre-commit
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ repos:
|
||||||
args: [--ignore-case]
|
args: [--ignore-case]
|
||||||
files: ^docs/source/spelling_wordlist\.txt$
|
files: ^docs/source/spelling_wordlist\.txt$
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: v0.14.4
|
rev: v0.14.6
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff-check
|
- id: ruff-check
|
||||||
args: [--fix, --exit-non-zero-on-fix]
|
args: [--fix, --exit-non-zero-on-fix]
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ representative at an online or offline event.
|
||||||
|
|
||||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||||
reported to the community leaders responsible for enforcement at
|
reported to the community leaders responsible for enforcement at
|
||||||
XuehaiPan@pku.edu.cn.
|
[XuehaiPan@pku.edu.cn](mailto:XuehaiPan@pku.edu.cn).
|
||||||
All complaints will be reviewed and investigated promptly and fairly.
|
All complaints will be reviewed and investigated promptly and fairly.
|
||||||
|
|
||||||
All community leaders are obligated to respect the privacy and security of the
|
All community leaders are obligated to respect the privacy and security of the
|
||||||
|
|
|
||||||
|
|
@ -212,8 +212,7 @@ pip3 install git+https://github.com/XuehaiPan/nvitop.git#egg=nvitop
|
||||||
Or, clone this repo and install manually:
|
Or, clone this repo and install manually:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone --depth=1 https://github.com/XuehaiPan/nvitop.git
|
git clone --depth=1 https://github.com/XuehaiPan/nvitop.git && cd nvitop
|
||||||
cd nvitop
|
|
||||||
pip3 install .
|
pip3 install .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -77,8 +77,7 @@ Or, clone this repo and install manually:
|
||||||
|
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
|
|
||||||
git clone --depth=1 https://github.com/XuehaiPan/nvitop.git
|
git clone --depth=1 https://github.com/XuehaiPan/nvitop.git && cd nvitop
|
||||||
cd nvitop
|
|
||||||
pip3 install .
|
pip3 install .
|
||||||
|
|
||||||
If this repo is useful to you, please star ⭐️ it to let more people know 🤗. |GitHub Repo Stars|_
|
If this repo is useful to you, please star ⭐️ it to let more people know 🤗. |GitHub Repo Stars|_
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue