From 4d8fe9dc44f2c86e919591627649f2dc3c596f00 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Thu, 12 Dec 2024 05:06:16 -0600 Subject: [PATCH] Fix a key name change for `actions/download-artifact@v4` (#238) I overlooked this change in #235, and that PR didn't change files that would have triggered the CI test suite to run. So, in addition, this PR modifies `ci.yaml` so that changes to that file trigger the workflow, too. Co-authored-by: Stanislav Zmiev --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 147173b..fcda0e6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,6 +10,7 @@ on: branches: [main, 3.x.x] types: [opened, synchronize] paths: + - ".github/workflows/ci.yaml" # self - "**.py" - "**.toml" - "**.lock" @@ -72,7 +73,7 @@ jobs: - name: Download coverage info uses: actions/download-artifact@v4 with: - name: coverage-results-* + pattern: coverage-results-* merge-multiple: true path: coverage/ - uses: actions/setup-python@v5