From dc007187610f3170bc1e9635a315c42b02eb03cf Mon Sep 17 00:00:00 2001 From: James Bennett Date: Fri, 1 Nov 2024 19:19:57 -0700 Subject: [PATCH] Revert to GH upload-artifact. Apparently the PA version of it doesn't like uploading dot-prefixed files, which is something this job needs to do. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8964dae..c209cbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: - name: Run tests run: "python -Im nox --non-interactive --error-on-external-run --tag tests --python ${{ matrix.python-version }}" - name: Upload coverage data - uses: PaloAltoNetworks/upload-secure-artifact@v1.0.5 + uses: actions/upload-artifact@v4 with: name: coverage-data-${{ matrix.python-version }} path: .coverage.* @@ -99,7 +99,7 @@ jobs: coverage report --fail-under=100 - name: Upload HTML report if check failed. - uses: PaloAltoNetworks/upload-secure-artifact@v1.0.5 + uses: actions/upload-artifact@v4 with: name: html-report path: htmlcov