Skip to content

Commit

Permalink
chore(deps): update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 17, 2024
1 parent 6ae3e18 commit 046b6da
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 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@v5
with:
name: coverage-data

Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Docker Build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
# https://github.com/docker/build-push-action/#inputs
# Test each platform individually for easier testing
with:
Expand Down

0 comments on commit 046b6da

Please sign in to comment.