Skip to content

Commit 2d4bc63

Browse files
⬆ Bump actions/upload-artifact from 4 to 5 (#1620)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cb13d12 commit 2d4bc63

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
@@ -81,7 +81,7 @@ jobs:
8181
run: python ./scripts/docs.py verify-readme
8282
- name: Build Docs
8383
run: python ./scripts/docs.py build
84-
- uses: actions/upload-artifact@v4
84+
- uses: actions/upload-artifact@v5
8585
with:
8686
name: docs-site
8787
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@v4
94+
uses: actions/upload-artifact@v5
9595
with:
9696
name: coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
9797
path: coverage
@@ -127,7 +127,7 @@ jobs:
127127
- run: coverage report
128128
- run: coverage html --title "Coverage for ${{ github.sha }}"
129129
- name: Store coverage HTML
130-
uses: actions/upload-artifact@v4
130+
uses: actions/upload-artifact@v5
131131
with:
132132
name: coverage-html
133133
path: htmlcov

0 commit comments

Comments
 (0)