Skip to content

Commit 611f725

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 9262835 commit 611f725

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
@@ -73,7 +73,7 @@ jobs:
7373
run: python ./scripts/docs.py verify-readme
7474
- name: Build Docs
7575
run: python ./scripts/docs.py build
76-
- uses: actions/upload-artifact@v5
76+
- uses: actions/upload-artifact@v6
7777
with:
7878
name: docs-site
7979
path: ./site/**

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}-${{ matrix.pydantic-version }}
9292
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
9393
- name: Store coverage files
94-
uses: actions/upload-artifact@v5
94+
uses: actions/upload-artifact@v6
9595
with:
9696
name: coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
9797
path: coverage
@@ -126,7 +126,7 @@ jobs:
126126
- run: coverage combine coverage
127127
- run: coverage html --title "Coverage for ${{ github.sha }}"
128128
- name: Store coverage HTML
129-
uses: actions/upload-artifact@v5
129+
uses: actions/upload-artifact@v6
130130
with:
131131
name: coverage-html
132132
path: htmlcov

0 commit comments

Comments
 (0)