Skip to content

Commit

Permalink
chore(deps): update actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 18, 2024
1 parent 25df2c6 commit 2b5d37c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
python -m pip install --upgrade pip
pip install . -r pipelines/requirements/ci.txt
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: .mypy_cache
key: ${{ runner.os }}-mypy
Expand All @@ -76,7 +76,7 @@ jobs:
TARGET_PYTHON: ${{ matrix.python-version }}

- name: Upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: ".cache/.coverage.*"
Expand All @@ -102,7 +102,7 @@ jobs:
python -m pip install --upgrade pip
pip install . -r pipelines/requirements/ci.txt
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
python -m pip install --upgrade pip
pip install -U . -r pipelines/requirements/ci.txt
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
Expand Down Expand Up @@ -175,14 +175,14 @@ jobs:
python -m pip install --upgrade pip
pip install -U . -r pipelines/requirements/ci.txt
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: .mypy_cache
key: ${{ runner.os }}-mypy
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
python -m pip install --upgrade pip
pip install -U . -r pipelines/requirements/ci.txt
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
COVERAGE_FILE: .cache/.coverage.databases

- name: Upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: ".cache/.coverage*"
Expand All @@ -334,7 +334,7 @@ jobs:
pip install -U . -r pipelines/requirements/ci.txt
- name: Download coverage data.
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
path: .cache/
Expand All @@ -345,7 +345,7 @@ jobs:
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: htmlcov
path: htmlcov
Expand All @@ -356,7 +356,7 @@ jobs:
nox -s push-coverage
# delete the temporary coverage artifacts to save on unnecessary cloud storage usage
- uses: geekyeggo/delete-artifact@v2
- uses: geekyeggo/delete-artifact@v4
with:
name: coverage-data

Expand Down

0 comments on commit 2b5d37c

Please sign in to comment.