Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about: Technical improvements without functional impact / changes to the Documen
title: "[TASK] "
labels: NEW, chore
assignees: ''

issueType: task
---


4 changes: 2 additions & 2 deletions .github/workflows/coverage-base-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
git fetch origin ${{ github.event.pull_request.base.ref }} --depth=1000

- name: Download artifact for base branch
uses: dawidd6/action-download-artifact@v7
uses: dawidd6/action-download-artifact@v8
continue-on-error: true
with:
workflow: ${{ github.event.pull_request.base.ref == 'main' && 'coverage-main-branch.yml' || github.event.pull_request.base.ref == 'develop' && 'coverage-develop-branch.yml' || 'coverage.yml' }}
Expand All @@ -35,7 +35,7 @@
search_artifacts: true

- name: Download artifact for to be merged branch
uses: dawidd6/action-download-artifact@v7
uses: dawidd6/action-download-artifact@v8
continue-on-error: true
with:
workflow: 'coverage.yml'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coverage-develop-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
npx c8 report --reporter json-summary --exclude-after-remap false

- name: Upload coverage artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-coverage-output
path: coverage
overwrite: true
retention-days: 90
4 changes: 3 additions & 1 deletion .github/workflows/coverage-main-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
npx c8 report --reporter json-summary --exclude-after-remap false

- name: Upload coverage artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-coverage-output
path: coverage
overwrite: true
retention-days: 90
8 changes: 5 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,15 @@
git fetch origin ${{ github.event.pull_request.base.ref }} --depth=1000

- name: Upload coverage artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-coverage-output
path: coverage
overwrite: true
retention-days: 90

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

Expand All @@ -56,7 +58,7 @@
GITHUB_TOKEN: ${{ github.token }}

- name: Download artifact for base branch if available, previous
uses: dawidd6/action-download-artifact@v7
uses: dawidd6/action-download-artifact@v8
continue-on-error: true
with:
workflow: ${{ github.event.pull_request.base.ref == 'main' && 'coverage-main-branch.yml' || github.event.pull_request.base.ref == 'develop' && 'coverage-develop-branch.yml' || 'coverage.yml' }}
Expand Down
Loading