Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- synchronize
jobs:
enforce-semantic-title:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: amannn/[email protected]
env:
Expand Down
28 changes: 14 additions & 14 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 Down Expand Up @@ -104,7 +104,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 @@ -138,7 +138,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 @@ -173,7 +173,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 @@ -211,14 +211,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 @@ -298,7 +298,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 @@ -347,7 +347,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 @@ -370,7 +370,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 @@ -381,7 +381,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 @@ -392,7 +392,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 @@ -420,7 +420,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