Skip to content

Commit f7b454a

Browse files
authored
update CI dependencies (#119)
1 parent 5e55511 commit f7b454a

9 files changed

+12
-17
lines changed

.github/actions/setup-dev-env/action.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010

1111
steps:
1212
- name: Set up python
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: ${{ inputs.python-version }}
1616

@@ -23,7 +23,7 @@ runs:
2323
echo "path=${CACHE_PATH}" >> $GITHUB_OUTPUT
2424
2525
- name: Restore pip cache
26-
uses: actions/cache@v2
26+
uses: actions/cache@v3
2727
with:
2828
path: ${{ steps.get-cache-path.outputs.path }}
2929
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}
@@ -34,13 +34,8 @@ runs:
3434
shell: bash
3535
run: python -m pip install --upgrade pip wheel
3636

37-
- name: Checkout repository
38-
uses: actions/checkout@v2
39-
with:
40-
fetch-depth: 0
41-
4237
- name: Install development requirements and project
4338
shell: bash
4439
run: |
45-
pip install doit
40+
pip install doit tomlkit
4641
doit install

.github/workflows/check-pytorch-package-indices.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/install.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090

9191
steps:
9292
- name: Checkout repository
93-
uses: actions/checkout@v2
93+
uses: actions/checkout@v3
9494
with:
9595
fetch-depth: 0
9696

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/linux-nightly-install.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
with:
2929
fetch-depth: 0
3030

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/publishable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
with:
3232
fetch-depth: 0
3333

.github/workflows/tests-pip-latest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
2929

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747
with:
4848
fetch-depth: 0
4949

@@ -56,7 +56,7 @@ jobs:
5656
run: doit test
5757

5858
- name: Upload coverage
59-
uses: codecov/codecov-action@v2.1.0
59+
uses: codecov/codecov-action@v3
6060
with:
6161
flags: unit
6262
env_vars: OS,PYTHON_VERSION

0 commit comments

Comments
 (0)