Skip to content

Commit a70e3ad

Browse files
build(deps): bump the actions group across 1 directory with 2 updates
Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). 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) --- 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cf7c55c commit a70e3ad

9 files changed

Lines changed: 11 additions & 11 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ 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
3636
- uses: actions/upload-artifact@v5
@@ -42,7 +42,7 @@ 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

0 commit comments

Comments
 (0)