Skip to content

Commit 00a709c

Browse files
MAINT: Bump actions/upload-artifact from 4.6.1 to 4.6.2
Bumps [actions/upload-artifact](https://github.com/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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0aafd85 commit 00a709c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
cd tools
6464
/usr/bin/python3.9 -m pytest --pyargs numpy -n2 -m "not slow"
6565
- name: Upload wheel if tests fail
66-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
66+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
6767
if: failure()
6868
with:
6969
name: numpy-cygwin-wheel

.github/workflows/emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
CIBW_PLATFORM: pyodide
5555

5656
- name: Upload wheel artifact(s)
57-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
57+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5858
with:
5959
name: cp312-pyodide_wasm32
6060
path: ./wheelhouse/*.whl

.github/workflows/mypy_primer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ jobs:
7070
run: |
7171
echo ${{ github.event.pull_request.number }} | tee pr_number.txt
7272
- name: Upload mypy_primer diff + PR number
73-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
73+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7474
if: ${{ matrix.shard-index == 0 }}
7575
with:
7676
name: mypy_primer_diffs-${{ matrix.shard-index }}
7777
path: |
7878
diff_${{ matrix.shard-index }}.txt
7979
pr_number.txt
8080
- name: Upload mypy_primer diff
81-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
81+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
8282
if: ${{ matrix.shard-index != 0 }}
8383
with:
8484
name: mypy_primer_diffs-${{ matrix.shard-index }}
@@ -92,7 +92,7 @@ jobs:
9292
contents: read
9393
steps:
9494
- name: Merge artifacts
95-
uses: actions/upload-artifact/merge@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
95+
uses: actions/upload-artifact/merge@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
9696
with:
9797
name: mypy_primer_diffs
9898
pattern: mypy_primer_diffs-*

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# Upload the results as artifacts (optional). Commenting out will disable
4343
# uploads of run results in SARIF format to the repository Actions tab.
4444
- name: "Upload artifact"
45-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
45+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4646
with:
4747
name: SARIF file
4848
path: results.sarif

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
env:
176176
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
177177

178-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
178+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
179179
with:
180180
name: ${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
181181
path: ./wheelhouse/*.whl
@@ -257,7 +257,7 @@ jobs:
257257
python -mpip install twine
258258
twine check dist/*
259259
260-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
260+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
261261
with:
262262
name: sdist
263263
path: ./dist/*

.github/workflows/windows_arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
if ((Test-Path -LiteralPath variable:\LASTEXITCODE)) { exit $LASTEXITCODE }
169169
170170
- name: Upload Artifacts
171-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
171+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
172172
with:
173173
name: ${{ env.python_version }}-win_arm64
174174
path: ./*.whl

0 commit comments

Comments
 (0)