Skip to content

Commit

Permalink
attempt to upgrade github actions and keep coverage working
Browse files Browse the repository at this point in the history
  • Loading branch information
burnettk committed Feb 2, 2024
1 parent 007facc commit 84feb06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
os: "ubuntu-latest",
session: "tests",
database: "mysql",
upload_coverage: true,
}
- {
python: "3.12",
Expand Down Expand Up @@ -186,10 +185,10 @@ jobs:
- name: Upload coverage data
# pin to upload coverage from only one matrix entry, otherwise coverage gets confused later
if: matrix.upload_coverage
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4.3.0"
# this action doesn't seem to respect working-directory so include working-directory value in path
with:
name: coverage-data
name: coverage-data-${{ matrix.runs-on }}
path: "spiffworkflow-backend/.coverage.*"

# - name: Upload documentation
Expand Down Expand Up @@ -275,9 +274,10 @@ jobs:
poetry --version
- name: Download coverage data
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.1
with:
name: coverage-data
name: coverage-data-*
merge-multiple: true
# this action doesn't seem to respect working-directory so include working-directory value in path
path: spiffworkflow-backend

Expand Down

0 comments on commit 84feb06

Please sign in to comment.