Skip to content

Commit 2b2793f

Browse files
build(deps): Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [actions/upload-artifact](https://github.com/actions/upload-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 to 3.3 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.2...v3.3) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- 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' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8adc658 commit 2b2793f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
echo "TAG_NAME=${{ github.event.release.tag_name || inputs.tag }}" >> $GITHUB_OUTPUT
3434
3535
- name: Checkout repo
36-
uses: actions/checkout@v5.0.0
36+
uses: actions/checkout@v6
3737
with:
3838
fetch-depth: 0 # Required to resolve tag commits
3939

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Format
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
- uses: actions/setup-python@v6
@@ -49,7 +49,7 @@ jobs:
4949
arch: "arm64"
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
with:
5454
fetch-depth: 0
5555

@@ -99,11 +99,11 @@ jobs:
9999
arch: "arm64"
100100

101101
steps:
102-
- uses: actions/checkout@v5
102+
- uses: actions/checkout@v6
103103
with:
104104
fetch-depth: 0
105105

106-
- uses: pypa/cibuildwheel@v3.2
106+
- uses: pypa/cibuildwheel@v3.3
107107
env:
108108
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*"
109109
CIBW_ARCHS: "${{ matrix.arch }}"
@@ -118,7 +118,7 @@ jobs:
118118
"{dest_dir}/$(basename {wheel})"'
119119

120120
- name: Upload wheels
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v5
122122
with:
123123
name: cibw-wheels-${{ matrix.runs-on }}-${{ strategy.job-index }}
124124
path: wheelhouse/*.whl

0 commit comments

Comments
 (0)