From c77e5975346cd15a5248b016993d3366fe285c65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 21:39:02 +0000 Subject: [PATCH] ci(deps): bump actions/upload-artifact from 2 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-publish-test-repo.yml | 2 +- .github/workflows/ci-publish.yml | 2 +- .github/workflows/ci-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-publish-test-repo.yml b/.github/workflows/ci-publish-test-repo.yml index adcc33c..68ae533 100644 --- a/.github/workflows/ci-publish-test-repo.yml +++ b/.github/workflows/ci-publish-test-repo.yml @@ -35,7 +35,7 @@ jobs: poetry build - name: Save build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dist-artifact path: dist/ diff --git a/.github/workflows/ci-publish.yml b/.github/workflows/ci-publish.yml index 9b7df08..092a863 100644 --- a/.github/workflows/ci-publish.yml +++ b/.github/workflows/ci-publish.yml @@ -37,7 +37,7 @@ jobs: poetry build - name: Save build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dist-artifact path: dist/ diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 0372e17..d45ece3 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -68,7 +68,7 @@ jobs: - name: Upload pytest artifacts if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Unit Test Results (Python ${{ matrix.python-version }}) path: pytest.xml