From c487233146c2d479bb4c22773fa9c0390b5b5450 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:05:26 +0000 Subject: [PATCH] build(deps): Bump actions/upload-artifact from 4.4.0 to 4.4.3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.0 to 4.4.3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.4.0...v4.4.3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... 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 dece1ac..f24ace3 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.4.0 + uses: actions/upload-artifact@v4.4.3 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.4.0 + uses: actions/upload-artifact@v4.4.3 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.4.0 + uses: actions/upload-artifact@v4.4.3 if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') with: name: dist