Skip to content

Commit 9920b9b

Browse files
Bump the all group with 2 updates (#392)
Bumps the all group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c804724 commit 9920b9b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
os.rename(f"report{os.sep}.coverage.${{ matrix.py }}", f"report{os.sep}.coverage.${{ matrix.py }}-{sys.platform}")
7676
shell: python
7777
- name: Upload coverage data
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
include-hidden-files: true
8181
name: coverage-${{ matrix.os }}-${{ matrix.py }}
@@ -105,15 +105,15 @@ jobs:
105105
hatch -v env create coverage
106106
hatch run coverage:pip freeze
107107
- name: Download coverage data
108-
uses: actions/download-artifact@v5
108+
uses: actions/download-artifact@v6
109109
with:
110110
path: report
111111
pattern: coverage-*
112112
merge-multiple: true
113113
- name: Combine and report coverage
114114
run: hatch run coverage:run
115115
- name: Upload HTML report
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v5
117117
with:
118118
name: html-report
119119
path: report/html

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build package
2323
run: uv build --python 3.13 --python-preference only-managed --sdist --wheel . --out-dir dist
2424
- name: Store the distribution packages
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v5
2626
with:
2727
name: ${{ env.dists-artifact-name }}
2828
path: dist/*
@@ -38,7 +38,7 @@ jobs:
3838
id-token: write
3939
steps:
4040
- name: Download all the dists
41-
uses: actions/download-artifact@v5
41+
uses: actions/download-artifact@v6
4242
with:
4343
name: ${{ env.dists-artifact-name }}
4444
path: dist/

0 commit comments

Comments
 (0)