Skip to content

Commit e1e7a43

Browse files
dependabot[bot]jcfr
authored andcommitted
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), [actions/download-artifact](https://github.com/actions/download-artifact) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `pypa/cibuildwheel` from 2.23.3 to 3.1.3 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v2.23.3...v3.1.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 3.1.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5533b06 commit e1e7a43

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/cd.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Make SDist
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0
2424

@@ -40,7 +40,7 @@ jobs:
4040
python: ["3.8", "3.12"]
4141

4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
- uses: actions/setup-python@v5
4545
name: Install Python ${{ matrix.python }}
4646
with:
@@ -53,7 +53,7 @@ jobs:
5353
pip install yq
5454
tomlq -r '.project."optional-dependencies".test[]' pyproject.toml | xargs -d '\n' pip install
5555
56-
- uses: actions/download-artifact@v4
56+
- uses: actions/download-artifact@v5
5757
with:
5858
name: cibw-sdist
5959
path: dist
@@ -72,7 +72,7 @@ jobs:
7272
needs: [build_wheels, make_sdist, test_sdist]
7373
runs-on: ubuntu-latest
7474
steps:
75-
- uses: actions/download-artifact@v4
75+
- uses: actions/download-artifact@v5
7676
with:
7777
path: all
7878

@@ -106,15 +106,15 @@ jobs:
106106
arch: "ppc64le"
107107
use_qemu: true
108108
steps:
109-
- uses: actions/checkout@v4
109+
- uses: actions/checkout@v5
110110
with:
111111
fetch-depth: 0
112112

113113
- name: Set up QEMU
114114
uses: docker/[email protected]
115115
if: matrix.use_qemu
116116

117-
- uses: pypa/cibuildwheel@v2.23.3
117+
- uses: pypa/cibuildwheel@v3.1.3
118118
env:
119119
CIBW_BUILD: "cp312-*"
120120
CIBW_ARCHS: "${{ matrix.arch }}"
@@ -135,7 +135,7 @@ jobs:
135135
if: github.event_name == 'release' && github.event.action == 'published'
136136

137137
steps:
138-
- uses: actions/download-artifact@v4
138+
- uses: actions/download-artifact@v5
139139
with:
140140
pattern: cibw-*
141141
path: dist

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Format
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
- uses: actions/setup-python@v5
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
with:
5353
fetch-depth: 0
5454

@@ -96,15 +96,15 @@ jobs:
9696
arch: "ppc64le"
9797
use_qemu: true
9898
steps:
99-
- uses: actions/checkout@v4
99+
- uses: actions/checkout@v5
100100
with:
101101
fetch-depth: 0
102102

103103
- name: Set up QEMU
104104
uses: docker/[email protected]
105105
if: matrix.use_qemu
106106

107-
- uses: pypa/cibuildwheel@v2.23.3
107+
- uses: pypa/cibuildwheel@v3.1.3
108108
env:
109109
CIBW_BUILD: "${{ matrix.python-version }}-*"
110110
CIBW_ARCHS: "${{ matrix.arch }}"

0 commit comments

Comments
 (0)