Skip to content

Commit eecea7a

Browse files
build(deps): bump the actions-monthly group with 4 updates (#1849)
Bumps the actions-monthly group with 4 updates: [korthout/backport-action](https://github.com/korthout/backport-action), [actions/download-artifact](https://github.com/actions/download-artifact), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [github/codeql-action](https://github.com/github/codeql-action). Updates `korthout/backport-action` from 4.1.0 to 4.3.0 - [Release notes](https://github.com/korthout/backport-action/releases) - [Commits](korthout/backport-action@01619eb...3c06f32) Updates `actions/download-artifact` from 8.0.0 to 8.0.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@70fc10c...3e5f45b) Updates `pypa/cibuildwheel` from 3.3.1 to 3.4.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@298ed2f...ee02a15) Updates `github/codeql-action` from 4.32.5 to 4.35.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@c793b71...c10b806) --- updated-dependencies: - dependency-name: korthout/backport-action dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-monthly - dependency-name: actions/download-artifact dependency-version: 8.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-monthly - dependency-name: pypa/cibuildwheel dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-monthly - dependency-name: github/codeql-action dependency-version: 4.35.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-monthly ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4834863 commit eecea7a

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "OLD_BRANCH=${OLD_BRANCH}" >> $GITHUB_ENV
3333
3434
- name: Create backport pull requests
35-
uses: korthout/backport-action@01619ebc9a6e3f6820274221b9956b3e7365000a # v4.1.0
35+
uses: korthout/backport-action@3c06f323a58619da1e8522229ebc8d5de2633e46 # v4.3.0
3636
with:
3737
copy_assignees: true
3838
copy_labels_pattern: true

.github/workflows/build-docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
echo "CUDA_BINDINGS_ARTIFACTS_DIR=$(realpath "$REPO_DIR/cuda_bindings/dist")" >> $GITHUB_ENV
104104
105105
- name: Download cuda-python build artifacts
106-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
106+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
107107
with:
108108
name: cuda-python-wheel
109109
path: .
@@ -116,7 +116,7 @@ jobs:
116116
ls -lahR .
117117
118118
- name: Download cuda-pathfinder build artifacts
119-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
119+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
120120
with:
121121
name: cuda-pathfinder-wheel
122122
path: ./cuda_pathfinder
@@ -128,14 +128,14 @@ jobs:
128128
129129
- name: Download cuda.bindings build artifacts
130130
if: ${{ !inputs.is-release }}
131-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
131+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
132132
with:
133133
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
134134
path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
135135

136136
- name: Download cuda.bindings build artifacts
137137
if: ${{ inputs.is-release }}
138-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
138+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
139139
with:
140140
pattern: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
141141
merge-multiple: true
@@ -150,14 +150,14 @@ jobs:
150150
151151
- name: Download cuda.core build artifacts
152152
if: ${{ !inputs.is-release }}
153-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
153+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
154154
with:
155155
name: ${{ env.CUDA_CORE_ARTIFACT_NAME }}
156156
path: ${{ env.CUDA_CORE_ARTIFACTS_DIR }}
157157

158158
- name: Download cuda.core build artifacts
159159
if: ${{ inputs.is-release }}
160-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
160+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
161161
with:
162162
pattern: ${{ env.CUDA_CORE_ARTIFACT_NAME }}
163163
merge-multiple: true

.github/workflows/build-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
if-no-files-found: error
112112

113113
- name: Build cuda.core wheel
114-
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
114+
uses: pypa/cibuildwheel@ee02a1537ce3071a004a6b08c41e72f0fdc42d9a # v3.4.0
115115
env:
116116
CIBW_BUILD: ${{ env.CIBW_BUILD }}
117117
CIBW_ARCHS_LINUX: "native"
@@ -154,7 +154,7 @@ jobs:
154154
cuda-version: ${{ inputs.cuda-version }}
155155

156156
- name: Build cuda.bindings wheel
157-
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
157+
uses: pypa/cibuildwheel@ee02a1537ce3071a004a6b08c41e72f0fdc42d9a # v3.4.0
158158
env:
159159
CIBW_BUILD: ${{ env.CIBW_BUILD }}
160160
CIBW_ARCHS_LINUX: "native"

.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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3232

3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
34+
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
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@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
41+
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
4242
with:
4343
category: "/language:${{matrix.language}}"

.github/workflows/test-wheel-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,14 @@ jobs:
150150
151151
- name: Download cuda-python build artifacts
152152
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
153-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
153+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
154154
with:
155155
name: cuda-python-wheel
156156
path: .
157157

158158
- name: Download cuda.bindings build artifacts
159159
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
160-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
160+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
161161
with:
162162
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
163163
path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
@@ -198,7 +198,7 @@ jobs:
198198
199199
- name: Download cuda.bindings Cython tests
200200
if: ${{ env.SKIP_CYTHON_TEST == '0' }}
201-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
201+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
202202
with:
203203
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}-tests
204204
path: ${{ env.CUDA_BINDINGS_CYTHON_TESTS_DIR }}

.github/workflows/test-wheel-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ jobs:
105105

106106
- name: Download cuda-python build artifacts
107107
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
108-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
108+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
109109
with:
110110
name: cuda-python-wheel
111111
path: .
112112

113113
- name: Download cuda.bindings build artifacts
114114
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0'}}
115-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
115+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
116116
with:
117117
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
118118
path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
@@ -188,7 +188,7 @@ jobs:
188188
189189
- name: Download cuda.bindings Cython tests
190190
if: ${{ env.SKIP_CYTHON_TEST == '0' }}
191-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
191+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
192192
with:
193193
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}-tests
194194
path: ${{ env.CUDA_BINDINGS_CYTHON_TESTS_DIR }}

0 commit comments

Comments
 (0)