Skip to content

Commit 437055a

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 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `pypa/cibuildwheel` from 3.4.1 to 4.1.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.4.1...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f0e78da commit 437055a

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ jobs:
66
codespell:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v6
9+
- uses: actions/checkout@v7
1010
- 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
@@ -37,7 +37,7 @@ jobs:
3737
LD_LIBRARY_PATH: "/usr/local/lib"
3838
steps:
3939
# Setup environment
40-
- uses: actions/checkout@v6
40+
- uses: actions/checkout@v7
4141
- name: Set up Python . . .
4242
uses: actions/setup-python@v6
4343
with:

.github/workflows/custom-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
LD_LIBRARY_PATH: "/usr/local/lib"
4040
steps:
4141
# Setup environment
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
- name: Set up Python . . .
4444
uses: actions/setup-python@v6
4545
with:

.github/workflows/doc.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@v6
33+
- uses: actions/checkout@v7
3434
- name: Set up Python . . .
3535
uses: actions/setup-python@v6
3636
with:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
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@v6
33+
- uses: actions/checkout@v7
3434
- name: Set up Python . . .
3535
uses: actions/setup-python@v6
3636
with:
@@ -78,7 +78,7 @@ jobs:
7878
clang-format:
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@v6
81+
- uses: actions/checkout@v7
8282
- name: Run clang-format style check on src
8383
uses: jidicula/clang-format-action@v4.18.0
8484
with:

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
LD_LIBRARY_PATH: "/usr/local/lib"
3232
steps:
3333
# Setup environment
34-
- uses: actions/checkout@v6
34+
- uses: actions/checkout@v7
3535
- name: "Set up Python"
3636
uses: actions/setup-python@v6
3737
with:

.github/workflows/test-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
UV_NO_SYNC: "1"
3434
steps:
3535
# Setup environment
36-
- uses: actions/checkout@v6
36+
- uses: actions/checkout@v7
3737
- name: Create micromamba environment . . .
3838
uses: mamba-org/setup-micromamba@v3
3939
with:

.github/workflows/tests.yml

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

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
os: [ubuntu-latest, ubuntu-24.04-arm, macos-15-intel, macos-latest]
2727

2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030
- name: Install uv
3131
uses: astral-sh/setup-uv@v7
3232

3333
# Used to host cibuildwheel
3434
- name: Build wheel
35-
uses: pypa/cibuildwheel@v3.4.1
35+
uses: pypa/cibuildwheel@v4.1.0
3636
with:
3737
output-dir: wheelhouse
3838
- uses: actions/upload-artifact@v7
@@ -44,7 +44,7 @@ jobs:
4444
name: Make source distribution
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v6
47+
- uses: actions/checkout@v7
4848
- name: Install uv
4949
uses: astral-sh/setup-uv@v7
5050
- name: Install libsemigroups

0 commit comments

Comments
 (0)