Skip to content

Commit

Permalink
Bump astral-sh/setup-uv from 4 to 5 in the github-actions group (#56)
Browse files Browse the repository at this point in the history
* Bump astral-sh/setup-uv from 4 to 5 in the github-actions group

Bumps the github-actions group with 1 update: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv).


Updates `astral-sh/setup-uv` from 4 to 5
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@v4...v5)

---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>

* 🔧 update `setup-uv` options

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: burgholzer <[email protected]>
  • Loading branch information
dependabot[bot] and burgholzer authored Dec 23, 2024
1 parent 6d2d9ad commit f6ab960
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/reusable-python-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ jobs:
uses: rui314/setup-mold@v1
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
- name: Run mypy
run: uvx --with pre-commit-uv pre-commit run -a mypy
# run check-sdist to ensure the package sdist is correct
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reusable-python-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fetch-depth: 0
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
Expand Down Expand Up @@ -82,10 +82,9 @@ jobs:
fetch-depth: 0
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
# workaround for https://github.com/pypa/setuptools-scm/issues/455
- if: ${{ inputs.no-local-version }}
name: Disable local version identifiers for setuptools_scm
Expand Down Expand Up @@ -154,7 +153,7 @@ jobs:
override_cache_key: wheels-${{ matrix.runs-on }}
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: ${{ matrix.runs-on != 'ubuntu-latest' }}
Expand Down Expand Up @@ -214,9 +213,10 @@ jobs:
echo "CIBW_BEFORE_ALL_LINUX=/opt/python/cp311-cp311/bin/pip install z3-solver==${{ inputs.z3-version }}" >> $GITHUB_ENV
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: false
# workaround for https://github.com/pypa/setuptools-scm/issues/455
- if: ${{ inputs.no-local-version }}
name: Disable local version identifiers for setuptools_scm
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/reusable-python-tests-individual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ jobs:
uses: rui314/setup-mold@v1
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
# run the nox session (assumes a corresponding nox session exists) with coverage
- name: Test on 🐍 ${{ inputs.python-version }}
run: uvx nox -s ${{ inputs.session }}-${{ inputs.python-version }} --verbose -- --cov --cov-report=xml:coverage-${{ inputs.session }}-${{ inputs.python-version }}-${{ inputs.runs-on }}.xml
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/reusable-python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,9 @@ jobs:
uses: rui314/setup-mold@v1
# set up uv for faster Python package management
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
# set up nox for convenient testing
- uses: wntrblm/[email protected]
# run the nox minimums session (assumes a nox session named "minimums" exists) with coverage
Expand Down

0 comments on commit f6ab960

Please sign in to comment.