Skip to content

Commit 09e7ecc

Browse files
committed
Merge branch 'main' into drop_to_cython
2 parents 9b96cc7 + 24fde17 commit 09e7ecc

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build-wheel.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
env
7272
7373
- name: Build cuda.core wheel
74-
uses: pypa/cibuildwheel@faf86a6ed7efa889faf6996aa23820831055001a # v2.23.3
74+
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
7575
env:
7676
CIBW_BUILD: ${{ env.CIBW_BUILD }}
7777
CIBW_ARCHS_LINUX: "native"
@@ -112,7 +112,7 @@ jobs:
112112
cuda-version: ${{ inputs.cuda-version }}
113113

114114
- name: Build cuda.bindings wheel
115-
uses: pypa/cibuildwheel@faf86a6ed7efa889faf6996aa23820831055001a # v2.23.3
115+
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
116116
env:
117117
CIBW_BUILD: ${{ env.CIBW_BUILD }}
118118
CIBW_ARCHS_LINUX: "native"
@@ -185,7 +185,8 @@ jobs:
185185
id: setup-python2
186186
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
187187
with:
188-
python-version: ${{ matrix.python-version }}
188+
# workaround for actions/runner-images#12377 (the cached 3.13.4 is buggy on Windows)
189+
python-version: ${{ matrix.python-version == '3.13' && '3.13.5' || matrix.python-version }}
189190

190191
- name: Set up Python include paths
191192
run: |

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3232

3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
34+
uses: github/codeql-action/init@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
3535
with:
3636
languages: ${{ matrix.language }}
3737
build-mode: ${{ matrix.build-mode }}
3838
queries: security-extended
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
41+
uses: github/codeql-action/analyze@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
4242
with:
4343
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)