Skip to content

Commit 3d07694

Browse files
dependabot[bot]jacobtylerwalls
authored andcommitted
Bump actions/upload-artifact from 3.1.3 to 4.0.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3.1.3...v4.0.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c250784 commit 3d07694

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/primer_run_main.yaml

Lines changed: 2 additions & 2 deletions
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 output diff
86-
uses: actions/upload-artifact@v3.1.3
86+
uses: actions/upload-artifact@v4.0.0
8787
with:
8888
name: primer_commitstring
8989
path:
@@ -103,7 +103,7 @@ jobs:
103103
then echo "::warning ::$WARNINGS"
104104
fi
105105
- name: Upload output
106-
uses: actions/upload-artifact@v3.1.3
106+
uses: actions/upload-artifact@v4.0.0
107107
with:
108108
name: primer_output
109109
path: >-

.github/workflows/primer_run_pr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,14 @@ jobs:
172172
then echo "::warning ::$WARNINGS"
173173
fi
174174
- name: Upload output of PR
175-
uses: actions/upload-artifact@v3.1.3
175+
uses: actions/upload-artifact@v4.0.0
176176
with:
177177
name: primer_output_pr
178178
path:
179179
tests/.pylint_primer_tests/output_${{ steps.python.outputs.python-version
180180
}}_pr_batch${{ matrix.batchIdx }}.txt
181181
- name: Upload output of 'main'
182-
uses: actions/upload-artifact@v3.1.3
182+
uses: actions/upload-artifact@v4.0.0
183183
with:
184184
name: primer_output_main
185185
path:
@@ -191,7 +191,7 @@ jobs:
191191
run: |
192192
echo ${{ github.event.pull_request.number }} | tee pr_number.txt
193193
- name: Upload PR number
194-
uses: actions/upload-artifact@v3.1.3
194+
uses: actions/upload-artifact@v4.0.0
195195
with:
196196
name: pr_number
197197
path: pr_number.txt

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
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@v3.1.3
79+
uses: actions/upload-artifact@v4.0.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@v3.1.3
163+
uses: actions/upload-artifact@v4.0.0
164164
with:
165165
name:
166166
benchmark-${{ runner.os }}-${{ matrix.python-version }}_${{

0 commit comments

Comments
 (0)