Skip to content

Commit c17ad98

Browse files
⬆ Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8cec38d commit c17ad98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: python ./scripts/docs.py verify-readme
7373
- name: Build Docs
7474
run: python ./scripts/docs.py build
75-
- uses: actions/upload-artifact@v5
75+
- uses: actions/upload-artifact@v6
7676
with:
7777
name: docs-site
7878
path: ./site/**

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}
7777
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
7878
- name: Store coverage files
79-
uses: actions/upload-artifact@v5
79+
uses: actions/upload-artifact@v6
8080
with:
8181
name: coverage-${{ matrix.python-version }}-${{ matrix.anyio-version }}
8282
path: coverage
@@ -111,7 +111,7 @@ jobs:
111111
- run: coverage combine coverage
112112
- run: coverage html --title "Coverage for ${{ github.sha }}"
113113
- name: Store coverage HTML
114-
uses: actions/upload-artifact@v5
114+
uses: actions/upload-artifact@v6
115115
with:
116116
name: coverage-html
117117
path: htmlcov

0 commit comments

Comments
 (0)