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
2 changes: 1 addition & 1 deletion .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
console.log('Combined: ' + combined);
return combined
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
# Creates a branch with other PR branches merged together
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run labeler
uses: crazy-max/ghaction-github-labeler@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: ✅ Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📦 Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ env.PYTHON_VERSION }}
enable-cache: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
!contains(github.event.head_commit.message, '[skip_ci]')
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.10'
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
os: [ubuntu-latest] # , macos-latest, windows-latest]
python-version: ['3.10']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{matrix.python-version}}
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
!contains(github.event.head_commit.message, '[skip_ci]')
steps:
- name: ✅ Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📦 Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ env.DEFAULT_PYTHON }}
enable-cache: true
Expand All @@ -71,10 +71,10 @@ jobs:
!contains(github.event.head_commit.message, '[skip_ci]')
steps:
- name: ✅ Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📦 Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ env.DEFAULT_PYTHON }}
enable-cache: true
Expand All @@ -96,12 +96,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ✅ Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1

- name: 📦 Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ env.DEFAULT_PYTHON }}
enable-cache: true
Expand Down Expand Up @@ -134,12 +134,12 @@ jobs:
steps:

- name: ✅ Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1

- name: 📦 Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
Expand All @@ -154,7 +154,7 @@ jobs:
run: uv run coverage run --parallel -m pytest -vv --emoji

- name: 🔃 Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-data-${{ runner.os }}-${{ matrix.python-version }}
path: ".coverage.*"
Expand All @@ -167,10 +167,10 @@ jobs:
steps:

- name: ✅ Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📦 Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ env.DEFAULT_PYTHON }}
enable-cache: true
Expand All @@ -179,7 +179,7 @@ jobs:
**/pyproject.toml

- name: 🔃 Download coverage data
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: coverage-data-*
merge-multiple: true
Expand Down
Loading