From ecbfb6bc28e0c85a33543fd1cb97d820e8cc0379 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 18:23:37 +0000 Subject: [PATCH] Build(deps): Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/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] --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 08fc7ebb..0e992180 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,7 @@ jobs: id: version run: python ./tools/get-version.py >> $GITHUB_OUTPUT - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist path: dist @@ -101,7 +101,7 @@ jobs: run: python -m tox - name: Store coverage data - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: "!endsWith(matrix.os, 'windows')" with: name: coverage-python-${{ matrix.python-version }} @@ -190,7 +190,7 @@ jobs: run: | pandoc --wrap=preserve -o release-notes.md release-notes.rst - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: release-notes.md path: release-notes.md