Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build package distribution
run: uv build
- name: Upload package artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: distribution
path: dist
Expand All @@ -44,7 +44,7 @@ jobs:
id-token: write
steps:
- name: Download package distribution
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: distribution
path: dist
Expand All @@ -64,7 +64,7 @@ jobs:
id-token: write
steps:
- name: Download package distribution
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: distribution
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/smokeshow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
id: setup-python
with:
Expand All @@ -33,7 +33,7 @@ jobs:
with:
version: "${{ env.UV_VERSION }}"
enable-cache: true
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: coverage-html
path: htmlcov
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- mypy
- ruff
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
pydantic-version: 'pydantic-v1'
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
Expand All @@ -83,7 +83,7 @@ jobs:
COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
- name: Store coverage files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
path: coverage
Expand All @@ -96,7 +96,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.12'
Expand All @@ -108,7 +108,7 @@ jobs:
- name: Install Dependencies
run: uv sync --locked --all-extras --group test
- name: Get coverage files
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: coverage-*
path: coverage
Expand All @@ -118,7 +118,7 @@ jobs:
- run: uv run coverage report
- run: uv run coverage html --title "Coverage for ${{ github.sha }}"
- name: Store coverage HTML
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-html
path: htmlcov
Expand Down