Skip to content

Commit 1e43249

Browse files
Bump actions/upload-artifact from 4.3.6 to 4.6.0 (#450)
* Bump actions/upload-artifact from 4.3.6 to 4.6.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.6 to 4.6.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.3.6...v4.6.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]> * Deal with breaking changes * Actually handle breaking changes --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniël van Noord <[email protected]>
1 parent 69da7e8 commit 1e43249

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/primer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
echo ${{ github.event.pull_request.number }} | tee pr_number.txt
5555
cp .pydocstringformatter_primer_tests/fulldiff.txt fulldiff.txt
5656
- name: Upload primer diff and PR number
57-
uses: actions/upload-artifact@v4.3.6
57+
uses: actions/upload-artifact@v4.6.0
5858
with:
5959
name: primer_diffs
6060
path: |

.github/workflows/tests.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ jobs:
2727
- name: Run pytest
2828
run: pytest -vv --cov
2929
- name: Upload coverage artifact
30-
uses: actions/upload-artifact@v4.3.6
30+
uses: actions/upload-artifact@v4.6.0
3131
with:
32+
include-hidden-files: true
3233
name: coverage-linux-${{ matrix.python-version }}
3334
path: .coverage
3435

@@ -56,8 +57,9 @@ jobs:
5657
- name: Run pytest
5758
run: pytest -vv --cov
5859
- name: Upload coverage artifact
59-
uses: actions/upload-artifact@v4.3.6
60+
uses: actions/upload-artifact@v4.6.0
6061
with:
62+
include-hidden-files: true
6163
name: coverage-windows-${{ matrix.python-version }}
6264
path: .coverage
6365

0 commit comments

Comments
 (0)