Skip to content

Commit

Permalink
Update workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismaddalena authored Jan 25, 2024
1 parent 4e2a5f2 commit 46a7913
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build environment
run: |
Expand All @@ -26,7 +26,7 @@ jobs:
docker-compose -f local.yml run django coverage xml -o "coverage/reports/coverage.xml"
- name: Upload Coverage report artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/reports/coverage.xml
Expand All @@ -36,10 +36,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 46a7913

Please sign in to comment.