From 9996ca5506acb0c42e021d3cb2d0f9c073683266 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 17:39:51 +0300 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4 to 5 (#523) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/create-executables.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/test.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-executables.yaml b/.github/workflows/create-executables.yaml index 0a9796a5..b2090fc0 100644 --- a/.github/workflows/create-executables.yaml +++ b/.github/workflows/create-executables.yaml @@ -34,7 +34,7 @@ jobs: run: just create-executable - name: Upload executable as an artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: rendercv-${{ matrix.os }} path: bin/* diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5c86d6db..2fd9abc8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -37,7 +37,7 @@ jobs: run: uv build - name: Upload the wheel and source distribution as artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist path: dist diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 18b32691..32761c4a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -42,7 +42,7 @@ jobs: run: mv .coverage .coverage.${{ matrix.python-version }}.${{ matrix.os }} - name: Upload coverage as an artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: include-hidden-files: true name: coverage-${{ matrix.python-version }}-${{ matrix.os }}