Skip to content

Commit

Permalink
update CI dependencies (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier authored Jan 19, 2023
1 parent 5e55511 commit f7b454a
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 17 deletions.
11 changes: 3 additions & 8 deletions .github/actions/setup-dev-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:

steps:
- name: Set up python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}

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

- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install development requirements and project
shell: bash
run: |
pip install doit
pip install doit tomlkit
doit install
2 changes: 1 addition & 1 deletion .github/workflows/check-pytorch-package-indices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-nightly-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publishable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-pip-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -56,7 +56,7 @@ jobs:
run: doit test

- name: Upload coverage
uses: codecov/codecov-action@v2.1.0
uses: codecov/codecov-action@v3
with:
flags: unit
env_vars: OS,PYTHON_VERSION

0 comments on commit f7b454a

Please sign in to comment.