From b59b899033c95a40fae25adb3ddf6b127a33ba7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 16:41:03 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=F0=9F=8F=BB=20ci:=20Bump=20actions?= =?UTF-8?q?/upload-artifact=20from=204.5.0=20to=204.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/lint.yaml | 2 +- .github/workflows/publish.yaml | 2 +- .github/workflows/test.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4077fb4..bee9d15 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -43,7 +43,7 @@ jobs: run: make lint - name: 🫙 Store type coverage - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 if: always() with: name: type_coverage_report_${{ matrix.os }}_${{ matrix.python-version }} diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index b935c1f..6f4d63a 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -38,7 +38,7 @@ jobs: run: python -m build - name: 🫙 Store distribution package - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3441511..74dbcee 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -51,7 +51,7 @@ jobs: CONTEXT: ${{ matrix.os }}-python-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml', 'requirements*') }} - name: 🫙 Store tests coverage - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 if: always() with: name: coverage_${{ matrix.os }}_python_${{ matrix.python-version }} @@ -107,7 +107,7 @@ jobs: coverage html --show-contexts --title "Coverage for ${{ github.sha }}" - name: 🫙 Store coverage report - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: coverage-html path: htmlcov