From 9872c93073838218727488a7c6ef5e2e1b4b1dd0 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Tue, 3 Sep 2024 09:36:23 +0100 Subject: [PATCH] Un-pin upload-artifact action and enable `include-hidden-files` option The `include-hidden-files` setting is required in future releases of this action to enable uploading files whose names begin with a period. We pinned the action previously because this config option was broken when initially added, but it has now been fixed. See https://github.com/actions/upload-artifact/releases/tag/v3.2.1-node20. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf85a2c2c34..d562389be4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,10 +97,11 @@ jobs: env: COVERAGE_FILE: .coverage.${{ matrix.python-version }} - name: Upload coverage file - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v3 with: name: coverage path: .coverage.* + include-hidden-files: true Coverage: needs: tests runs-on: ubuntu-latest