Skip to content

Commit 3c0fc4b

Browse files
chore(deps): bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `1` | `5` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.1` | `3.2` | Updates `actions/checkout` from 1 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v1...v5) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `pypa/cibuildwheel` from 3.1 to 3.2 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.1...v3.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: '3.2' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e6984c8 commit 3c0fc4b

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
allow-prereleases: true
192192

193193
- name: Install uv
194-
uses: astral-sh/setup-uv@v6
194+
uses: astral-sh/setup-uv@v7
195195
with:
196196
enable-cache: true
197197

@@ -778,7 +778,7 @@ jobs:
778778
timeout-minutes: 90
779779

780780
steps:
781-
- uses: actions/checkout@v1 # v1 is required to run inside docker
781+
- uses: actions/checkout@v5 # v1 is required to run inside docker
782782

783783
- name: Install requirements
784784
run: |

.github/workflows/configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python-version: 3.11
5757

5858
- name: Install uv
59-
uses: astral-sh/setup-uv@v6
59+
uses: astral-sh/setup-uv@v7
6060

6161
- name: Prepare env
6262
run: uv pip install --python=python --system -r tests/requirements.txt

.github/workflows/nightlies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
fetch-depth: 0
2626

2727
- name: Install uv
28-
uses: astral-sh/setup-uv@v6
28+
uses: astral-sh/setup-uv@v7
2929

3030
- name: Build SDist and wheels
3131
run: |
3232
uv tool install nox
3333
nox -s build
3434
nox -s build_global
3535
36-
- uses: actions/upload-artifact@v4
36+
- uses: actions/upload-artifact@v5
3737
with:
3838
name: Packages
3939
path: dist/*
@@ -44,7 +44,7 @@ jobs:
4444
needs: [build_wheel]
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/download-artifact@v5
47+
- uses: actions/download-artifact@v6
4848
with:
4949
name: Packages
5050
path: dist

.github/workflows/pip.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python-version: 3.8
3232

3333
- name: Install uv
34-
uses: astral-sh/setup-uv@v6
34+
uses: astral-sh/setup-uv@v7
3535

3636
- name: Prepare env
3737
run: uv pip install --system -r tests/requirements.txt
@@ -55,7 +55,7 @@ jobs:
5555
python-version: 3.8
5656

5757
- name: Install uv
58-
uses: astral-sh/setup-uv@v6
58+
uses: astral-sh/setup-uv@v7
5959

6060
- name: Prepare env
6161
run: uv pip install --system -r tests/requirements.txt twine nox
@@ -72,13 +72,13 @@ jobs:
7272
run: twine check dist/*
7373

7474
- name: Save standard package
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: standard
7878
path: dist/pybind11-*
7979

8080
- name: Save global package
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
8282
with:
8383
name: global
8484
path: dist/*global-*
@@ -100,7 +100,7 @@ jobs:
100100

101101
steps:
102102
# Downloads all to directories matching the artifact names
103-
- uses: actions/download-artifact@v5
103+
- uses: actions/download-artifact@v6
104104

105105
- name: Generate artifact attestation for sdist and wheel
106106
uses: actions/attest-build-provenance@v3

.github/workflows/reusable-standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: brew install boost
5252

5353
- name: Install uv
54-
uses: astral-sh/setup-uv@v6
54+
uses: astral-sh/setup-uv@v7
5555
with:
5656
enable-cache: true
5757

.github/workflows/tests-cibw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
submodules: true
2323
fetch-depth: 0
2424

25-
- uses: pypa/cibuildwheel@v3.1
25+
- uses: pypa/cibuildwheel@v3.2
2626
env:
2727
PYODIDE_BUILD_EXPORTS: whole_archive
2828
with:
@@ -45,7 +45,7 @@ jobs:
4545
# We have to uninstall first because GH is now using a local tap to build cmake<4, iOS needs cmake>=4
4646
- run: brew uninstall cmake && brew install cmake
4747

48-
- uses: pypa/cibuildwheel@v3.1
48+
- uses: pypa/cibuildwheel@v3.2
4949
env:
5050
CIBW_PLATFORM: ios
5151
CIBW_SKIP: cp314-* # https://github.com/pypa/cibuildwheel/issues/2494
@@ -80,7 +80,7 @@ jobs:
8080
8181
- run: pipx install patchelf
8282

83-
- uses: pypa/cibuildwheel@v3.1
83+
- uses: pypa/cibuildwheel@v3.2
8484
env:
8585
CIBW_PLATFORM: android
8686
with:

0 commit comments

Comments
 (0)