Skip to content

Commit

Permalink
Un-pin upload-artifact action and enable include-hidden-files option
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
robertknight committed Sep 3, 2024
1 parent 0a7a17b commit 9872c93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9872c93

Please sign in to comment.