From 194a83f4c0051dd000d3e730c80789915e6011c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 20:26:49 +0000 Subject: [PATCH] build(deps): Bump actions/upload-artifact from 4.5.0 to 4.6.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.5.0...v4.6.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/test-build-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-build-deploy.yml b/.github/workflows/test-build-deploy.yml index 8cc059c..1f1b55a 100644 --- a/.github/workflows/test-build-deploy.yml +++ b/.github/workflows/test-build-deploy.yml @@ -39,7 +39,7 @@ jobs: COVERAGE_FILE: coverage.${{ matrix.python-version }} - name: Upload coverage artifact - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: coverage-${{ matrix.python-version }} path: coverage.${{ matrix.python-version }} @@ -84,7 +84,7 @@ jobs: coverage-reports: coverage.xml - name: Upload XML coverage report artifact - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: coverage-xml path: coverage.xml @@ -114,7 +114,7 @@ jobs: python -m build --sdist --wheel --outdir dist/ . - name: Upload binaries artifact - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') with: name: dist