Skip to content

Commit 199dda6

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [github/codeql-action](https://github.com/github/codeql-action) and [actions/cache](https://github.com/actions/cache). 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@63fd63b...298ed2f) Updates `github/codeql-action` from 4.31.9 to 4.31.10 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@5d4e8d1...cdefb33) Updates `actions/cache` from 5.0.1 to 5.0.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@9255dc7...8b402f5) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 3.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/cache dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ca3a030 commit 199dda6

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
path: dist/
144144

145145
- name: Build wheels for CPython 3.14
146-
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
146+
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
147147
with:
148148
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
149149
env:
@@ -153,7 +153,7 @@ jobs:
153153
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
154154

155155
- name: Build wheels for CPython 3.13
156-
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
156+
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
157157
with:
158158
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
159159
env:
@@ -162,23 +162,23 @@ jobs:
162162
CIBW_ARCHS: ${{ matrix.cibw_archs }}
163163

164164
- name: Build wheels for CPython 3.12
165-
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
165+
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
166166
with:
167167
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
168168
env:
169169
CIBW_BUILD: "cp312-*"
170170
CIBW_ARCHS: ${{ matrix.cibw_archs }}
171171

172172
- name: Build wheels for CPython 3.11
173-
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
173+
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
174174
with:
175175
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
176176
env:
177177
CIBW_BUILD: "cp311-*"
178178
CIBW_ARCHS: ${{ matrix.cibw_archs }}
179179

180180
- name: Build wheels for PyPy
181-
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
181+
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
182182
with:
183183
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
184184
env:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
persist-credentials: false
3333

3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
35+
uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
3636
with:
3737
languages: ${{ matrix.language }}
3838

@@ -43,4 +43,4 @@ jobs:
4343
pip install --user -v .
4444
4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
46+
uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10

.github/workflows/cygwin.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,21 +140,21 @@ jobs:
140140
# FreeType build fails with bash, succeeds with dash
141141

142142
- name: Cache pip
143-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
143+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
144144
with:
145145
path: C:\cygwin\home\runneradmin\.cache\pip
146146
key: Cygwin-py3.${{ matrix.python-minor-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
147147
restore-keys: ${{ matrix.os }}-py3.${{ matrix.python-minor-version }}-pip-
148148

149149
- name: Cache ccache
150-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
150+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
151151
with:
152152
path: C:\cygwin\home\runneradmin\.ccache
153153
key: Cygwin-py3.${{ matrix.python-minor-version }}-ccache-${{ hashFiles('src/*') }}
154154
restore-keys: Cygwin-py3.${{ matrix.python-minor-version }}-ccache-
155155

156156
- name: Cache Matplotlib
157-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
157+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
158158
with:
159159
path: |
160160
C:\cygwin\home\runneradmin\.cache\matplotlib

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,31 +178,31 @@ jobs:
178178
esac
179179
180180
- name: Cache pip
181-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
181+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
182182
if: startsWith(runner.os, 'Linux')
183183
with:
184184
path: ~/.cache/pip
185185
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
186186
restore-keys: |
187187
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
188188
- name: Cache pip
189-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
189+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
190190
if: startsWith(runner.os, 'macOS')
191191
with:
192192
path: ~/Library/Caches/pip
193193
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
194194
restore-keys: |
195195
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
196196
- name: Cache ccache
197-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
197+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
198198
with:
199199
path: |
200200
~/.ccache
201201
key: ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
202202
restore-keys: |
203203
${{ matrix.os }}-py${{ matrix.python-version }}-ccache-
204204
- name: Cache Matplotlib
205-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
205+
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
206206
with:
207207
path: |
208208
~/.cache/matplotlib

0 commit comments

Comments
 (0)