Skip to content

Commit d64ce5f

Browse files
chore: bump the action-dependencies group with 3 updates (#1940)
Bumps the action-dependencies group with 3 updates: [github/codeql-action](https://github.com/github/codeql-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `github/codeql-action` from 3.28.11 to 3.28.12 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@6bb031a...5f8171a) Updates `actions/upload-artifact` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@4cec3d8...ea165f8) Updates `actions/download-artifact` from 4.1.9 to 4.2.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@cc20338...95815c3) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: action-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: action-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 32e8d79 commit d64ce5f

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3
54+
uses: github/codeql-action/init@5f8171a638ada777af81d42b55959a643bb29017 # v3
5555
with:
5656
languages: ${{ matrix.language }}
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -62,7 +62,7 @@ jobs:
6262
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6363
# If this step fails, then you should remove it and run the build manually (see below)
6464
- name: Autobuild
65-
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3
65+
uses: github/codeql-action/autobuild@5f8171a638ada777af81d42b55959a643bb29017 # v3
6666

6767
# ℹ️ Command-line programs to run using the OS shell.
6868
# 📚 https://git.io/JvXDl
@@ -76,4 +76,4 @@ jobs:
7676
# make release
7777

7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3
79+
uses: github/codeql-action/analyze@5f8171a638ada777af81d42b55959a643bb29017 # v3

.github/workflows/coverage.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
mv .metacov .metacov.$MATRIX_ID
126126
127127
- name: "Upload coverage data"
128-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
128+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
129129
with:
130130
name: metacov-${{ env.MATRIX_ID }}
131131
path: .metacov.*
@@ -170,7 +170,7 @@ jobs:
170170
python igor.py zip_mods
171171
172172
- name: "Download coverage data"
173-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
173+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
174174
with:
175175
pattern: metacov-*
176176
merge-multiple: true
@@ -184,7 +184,7 @@ jobs:
184184
python igor.py combine_html
185185
186186
- name: "Upload HTML report"
187-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
187+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
188188
with:
189189
name: html_report
190190
path: htmlcov
@@ -239,7 +239,7 @@ jobs:
239239
240240
- name: "Download coverage HTML report"
241241
if: ${{ github.ref == 'refs/heads/master' }}
242-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
242+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
243243
with:
244244
name: html_report
245245
path: reports_repo/${{ env.report_dir }}

.github/workflows/kit.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
python -m twine check wheelhouse/*
183183
184184
- name: "Upload binary wheels"
185-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
185+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
186186
with:
187187
name: dist-${{ env.MATRIX_ID }}
188188
path: wheelhouse/*.whl
@@ -223,7 +223,7 @@ jobs:
223223
python -m twine check dist/*
224224
225225
- name: "Upload non-binary artifacts"
226-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
226+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
227227
with:
228228
name: dist-non-binary
229229
path: dist/*
@@ -267,7 +267,7 @@ jobs:
267267
python -m twine check dist/*
268268
269269
- name: "Upload wheels"
270-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
270+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
271271
with:
272272
name: dist-pypy
273273
path: dist/*.whl
@@ -286,7 +286,7 @@ jobs:
286286
id-token: write
287287
steps:
288288
- name: "Download artifacts"
289-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
289+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
290290
with:
291291
pattern: dist-*
292292
merge-multiple: true
@@ -308,7 +308,7 @@ jobs:
308308
ls -alR
309309
310310
- name: "Upload signatures"
311-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
311+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
312312
with:
313313
name: signatures
314314
path: "*.sigstore.json"

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: "Download dists"
67-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
67+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
6868
with:
6969
repository: "nedbat/coveragepy"
7070
run-id: ${{ needs.find-run.outputs.run-id }}
@@ -104,7 +104,7 @@ jobs:
104104

105105
steps:
106106
- name: "Download dists"
107-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
107+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
108108
with:
109109
repository: "nedbat/coveragepy"
110110
run-id: ${{ needs.find-run.outputs.run-id }}

0 commit comments

Comments
 (0)