Skip to content

Commit a87cb4c

Browse files
Bump actions/upload-artifact from 4.2.0 to 4.3.0 (pylint-dev#9397)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.2.0...v4.3.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 77caa0f commit a87cb4c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/primer_run_main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
. venv/bin/activate
8484
python tests/primer/__main__.py prepare --clone
8585
- name: Upload commit string
86-
uses: actions/upload-artifact@v4.2.0
86+
uses: actions/upload-artifact@v4.3.0
8787
if: matrix.batchIdx == 0
8888
with:
8989
name: primer_commitstring_${{ matrix.python-version }}
@@ -104,7 +104,7 @@ jobs:
104104
then echo "::warning ::$WARNINGS"
105105
fi
106106
- name: Upload output
107-
uses: actions/upload-artifact@v4.2.0
107+
uses: actions/upload-artifact@v4.3.0
108108
with:
109109
name:
110110
primer_output_main_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}

.github/workflows/primer_run_pr.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@ jobs:
178178
then echo "::warning ::$WARNINGS"
179179
fi
180180
- name: Upload output of PR
181-
uses: actions/upload-artifact@v4.2.0
181+
uses: actions/upload-artifact@v4.3.0
182182
with:
183183
name:
184184
primer_output_pr_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}
185185
path:
186186
tests/.pylint_primer_tests/output_${{ matrix.python-version }}_pr_batch${{
187187
matrix.batchIdx }}.txt
188188
- name: Upload output of 'main'
189-
uses: actions/upload-artifact@v4.2.0
189+
uses: actions/upload-artifact@v4.3.0
190190
with:
191191
name:
192192
primer_output_main_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}
@@ -199,7 +199,7 @@ jobs:
199199
- name: Upload PR number
200200
if:
201201
startsWith(steps.python.outputs.python-version, '3.8') && matrix.batchIdx == 0
202-
uses: actions/upload-artifact@v4.2.0
202+
uses: actions/upload-artifact@v4.3.0
203203
with:
204204
name: pr_number
205205
path: pr_number.txt

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
pip list | grep 'astroid\|pylint'
7777
python -m pytest -vv --minimal-messages-config tests/test_functional.py
7878
- name: Upload coverage artifact
79-
uses: actions/upload-artifact@v4.2.0
79+
uses: actions/upload-artifact@v4.3.0
8080
with:
8181
name: coverage-${{ matrix.python-version }}
8282
path: .coverage
@@ -160,7 +160,7 @@ jobs:
160160
run: >-
161161
echo "datetime="$(date "+%Y%m%d_%H%M") >> $GITHUB_OUTPUT
162162
- name: Upload benchmark artifact
163-
uses: actions/upload-artifact@v4.2.0
163+
uses: actions/upload-artifact@v4.3.0
164164
with:
165165
name:
166166
benchmark-${{ runner.os }}-${{ matrix.python-version }}_${{

0 commit comments

Comments
 (0)