Skip to content

Commit 702b6e5

Browse files
build(deps): bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `pypa/cibuildwheel` from 3.2.1 to 3.3.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.2.1...v3.3.0) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 838fd91 commit 702b6e5

9 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ jobs:
44
codespell:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- uses: codespell-project/actions-codespell@v2.2

.github/workflows/config-options.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
LD_LIBRARY_PATH: "/usr/local/lib"
3636
steps:
3737
# Setup environment
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
- name: Set up Python . . .
4040
uses: actions/setup-python@v6
4141
with:

.github/workflows/custom-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
LD_LIBRARY_PATH: "/usr/local/lib"
3838
steps:
3939
# Setup environment
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- name: Set up Python . . .
4242
uses: actions/setup-python@v6
4343
with:

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
LD_LIBRARY_PATH: "/usr/local/lib"
2929
steps:
3030
# Setup environment
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Set up Python . . .
3333
uses: actions/setup-python@v6
3434
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
LD_LIBRARY_PATH: "/usr/local/lib"
2929
steps:
3030
# Setup environment
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Set up Python . . .
3333
uses: actions/setup-python@v6
3434
with:

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
LD_LIBRARY_PATH: "/usr/local/lib"
3030
steps:
3131
# Setup environment
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- name: "Set up Python"
3434
uses: actions/setup-python@v6
3535
with:

.github/workflows/test-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
UV_NO_SYNC: "1"
3232
steps:
3333
# Setup environment
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: Create micromamba environment . . .
3636
uses: mamba-org/setup-micromamba@v2
3737
with:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
LD_LIBRARY_PATH: "/usr/local/lib"
3131
steps:
3232
# Setup environment
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: Install uv and set the Python version
3535
uses: astral-sh/setup-uv@v7
3636
with:

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
os: [ubuntu-latest, ubuntu-24.04-arm, macos-15-intel, macos-latest]
2525

2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- name: Install uv
2929
uses: astral-sh/setup-uv@v7
3030

3131
# Used to host cibuildwheel
3232
- name: Build wheel
33-
uses: pypa/cibuildwheel@v3.2.1
33+
uses: pypa/cibuildwheel@v3.3.0
3434
with:
3535
output-dir: wheelhouse
36-
- uses: actions/upload-artifact@v5
36+
- uses: actions/upload-artifact@v6
3737
with:
3838
name: cibw-wheels-${{ matrix.os }}
3939
path: ./wheelhouse/*.whl
@@ -42,14 +42,14 @@ jobs:
4242
name: Make source distribution
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
- name: Install uv
4747
uses: astral-sh/setup-uv@v7
4848
- name: Install libsemigroups
4949
run: source etc/make-libsemigroups.sh && sudo make install
5050
- name: Build SDist
5151
run: uv build --sdist
52-
- uses: actions/upload-artifact@v5
52+
- uses: actions/upload-artifact@v6
5353
with:
5454
name: sdist
5555
path: dist/*.tar.gz
@@ -73,7 +73,7 @@ jobs:
7373

7474
steps:
7575
- name: Download wheels and sdist artifacts
76-
uses: actions/download-artifact@v6
76+
uses: actions/download-artifact@v7
7777
with:
7878
# Here, we could specify a name of an artifact, or a pattern that
7979
# matches the names of artifacts. However, by not specifying these

0 commit comments

Comments
 (0)