Skip to content

Commit 4e8e055

Browse files
Build: Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6.0.1...v6.0.2) Updates `actions/setup-python` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.1.0...v6.2.0) Updates `pypa/cibuildwheel` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.3.0...v3.3.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4653ac0 commit 4e8e055

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v6.0.1
28+
- uses: actions/checkout@v6.0.2
2929

3030
- name: Set up Python
31-
uses: actions/setup-python@v6.1.0
31+
uses: actions/setup-python@v6.2.0
3232
with:
3333
python-version: "3.12"
3434

@@ -75,10 +75,10 @@ jobs:
7575
runs-on: ${{ matrix.os }}
7676

7777
steps:
78-
- uses: actions/checkout@v6.0.1
78+
- uses: actions/checkout@v6.0.2
7979

8080
- name: Set up Python
81-
uses: actions/setup-python@v6.1.0
81+
uses: actions/setup-python@v6.2.0
8282
with:
8383
python-version: ${{ matrix.python-version }}
8484

@@ -138,10 +138,10 @@ jobs:
138138
runs-on: ubuntu-latest
139139

140140
steps:
141-
- uses: actions/checkout@v6.0.1
141+
- uses: actions/checkout@v6.0.2
142142

143143
- name: Set up Python
144-
uses: actions/setup-python@v6.1.0
144+
uses: actions/setup-python@v6.2.0
145145
with:
146146
python-version: "3.12"
147147

@@ -191,10 +191,10 @@ jobs:
191191
env: { MACOSX_DEPLOYMENT_TARGET: 11.0 }
192192

193193
steps:
194-
- uses: actions/checkout@v6.0.1
194+
- uses: actions/checkout@v6.0.2
195195

196196
- name: Set up Python
197-
uses: actions/setup-python@v6.1.0
197+
uses: actions/setup-python@v6.2.0
198198
with:
199199
python-version: ${{ matrix.python-version }}
200200

.github/workflows/wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
contents: write
4545

4646
steps:
47-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.1.1
47+
- uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.1.1
4848

4949
- name: Set up Python
50-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
50+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5151
with:
5252
python-version: "3.x"
5353

@@ -72,7 +72,7 @@ jobs:
7272
outputs:
7373
include: ${{ steps.set-matrix.outputs.include }}
7474
steps:
75-
- uses: actions/checkout@v6.0.1
75+
- uses: actions/checkout@v6.0.2
7676
- name: Install cibuildwheel
7777
# Nb. keep cibuildwheel version pin consistent with job below
7878
run: pipx install cibuildwheel==3.3.0
@@ -105,7 +105,7 @@ jobs:
105105

106106
steps:
107107
- name: Check out the repo
108-
uses: actions/checkout@v6.0.1
108+
uses: actions/checkout@v6.0.2
109109

110110
- name: Set up QEMU
111111
if: runner.os == 'Linux'
@@ -114,14 +114,14 @@ jobs:
114114
platforms: all
115115

116116
- name: Build wheels
117-
uses: pypa/cibuildwheel@v3.3.0
117+
uses: pypa/cibuildwheel@v3.3.1
118118
with:
119119
only: ${{ matrix.only }}
120120

121121
- name: Build faster Linux wheels
122122
# also build wheels with the most recent manylinux images and gcc
123123
if: runner.os == 'Linux' && !contains(matrix.only, 'i686')
124-
uses: pypa/cibuildwheel@v3.3.0
124+
uses: pypa/cibuildwheel@v3.3.1
125125
env:
126126
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_34
127127
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_34 # manylinux_2_39 ?
@@ -168,7 +168,7 @@ jobs:
168168

169169
steps:
170170
- name: Check out the repo
171-
uses: actions/checkout@v6.0.1
171+
uses: actions/checkout@v6.0.2
172172

173173
- name: Download files
174174
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0

0 commit comments

Comments
 (0)