Skip to content

Commit 652d066

Browse files
Bump actions/upload-artifact from 4.6.2 to 5.0.0 (#10705)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 5.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bb9df16 commit 652d066

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/primer_run_main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
${{ runner.os }}-${{ matrix.python-version }}-${{
103103
steps.commitstring.outputs.commitstring }}-primer
104104
- name: Upload commit string
105-
uses: actions/upload-artifact@v4.6.2
105+
uses: actions/upload-artifact@v5.0.0
106106
if: matrix.batchIdx == 0
107107
with:
108108
name: primer_commitstring_${{ matrix.python-version }}
@@ -123,7 +123,7 @@ jobs:
123123
then echo "::warning ::$WARNINGS"
124124
fi
125125
- name: Upload output
126-
uses: actions/upload-artifact@v4.6.2
126+
uses: actions/upload-artifact@v5.0.0
127127
with:
128128
name:
129129
primer_output_main_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}

.github/workflows/primer_run_pr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,15 +197,15 @@ jobs:
197197
then echo "::warning ::$WARNINGS"
198198
fi
199199
- name: Upload output of PR
200-
uses: actions/upload-artifact@v4.6.2
200+
uses: actions/upload-artifact@v5.0.0
201201
with:
202202
name:
203203
primer_output_pr_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}
204204
path:
205205
tests/.pylint_primer_tests/output_${{ matrix.python-version }}_pr_batch${{
206206
matrix.batchIdx }}.txt
207207
- name: Upload output of 'main'
208-
uses: actions/upload-artifact@v4.6.2
208+
uses: actions/upload-artifact@v5.0.0
209209
with:
210210
name:
211211
primer_output_main_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}
@@ -219,7 +219,7 @@ jobs:
219219
if:
220220
startsWith(steps.python.outputs.python-version, '3.10') && matrix.batchIdx ==
221221
0
222-
uses: actions/upload-artifact@v4.6.2
222+
uses: actions/upload-artifact@v5.0.0
223223
with:
224224
name: pr_number
225225
path: pr_number.txt

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
python -m build
3636
- name: Upload release assets
37-
uses: actions/upload-artifact@v4.6.2
37+
uses: actions/upload-artifact@v5.0.0
3838
with:
3939
name: release-assets
4040
path: dist/

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
python -m pytest -vv --minimal-messages-config tests/test_functional.py --benchmark-disable
9292
- name: Upload coverage artifact
9393
if: runner.os == 'Linux'
94-
uses: actions/upload-artifact@v4.6.2
94+
uses: actions/upload-artifact@v5.0.0
9595
with:
9696
name: coverage-${{ matrix.python-version }}
9797
include-hidden-files: true
@@ -162,7 +162,7 @@ jobs:
162162
run: >-
163163
echo "datetime="$(date "+%Y%m%d_%H%M") >> $GITHUB_OUTPUT
164164
- name: Upload benchmark artifact
165-
uses: actions/upload-artifact@v4.6.2
165+
uses: actions/upload-artifact@v5.0.0
166166
with:
167167
name:
168168
benchmark-${{ runner.os }}-${{ matrix.python-version }}_${{

0 commit comments

Comments
 (0)