From b826ff65eccc930e0fbd77b32edd1328d974de2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 May 2022 18:00:41 +0100 Subject: [PATCH] build(deps): bump actions/upload-artifact from 2 to 3 (#4035) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact 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/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6070168..1a785e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: make docs - name: Store docs site - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: docs path: site @@ -120,7 +120,7 @@ jobs: CONTEXT: linux-py${{ matrix.python-version }}-compiled-no-deps-no - name: store coverage files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage path: coverage @@ -159,7 +159,7 @@ jobs: CONTEXT: ${{ matrix.os }}-py${{ matrix.python-version }} - name: store coverage files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage path: coverage @@ -200,7 +200,7 @@ jobs: CONTEXT: linux-py3.10-mypy${{ matrix.mypy-version }} - name: store coverage files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage path: coverage @@ -230,7 +230,7 @@ jobs: - run: coverage html --show-contexts - name: Store coverage html - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-html path: htmlcov @@ -308,7 +308,7 @@ jobs: twine check dist/* - name: Store dist artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: pypi_files path: dist