Skip to content

Commit

Permalink
ci: downgrade upload-artifact to v3 (#1239)
Browse files Browse the repository at this point in the history
## Proposed change

dorny/test-reporter doesn't support artifact v4
#1198

## Related issues

- 🐛 Fixes #(issue)
- 🚀 Feature #(issue)

<!-- Please make sure to follow the contributing guidelines on
https://github.com/amadeus-digital/Otter/blob/main/CONTRIBUTING.md -->
  • Loading branch information
fpaul-1A committed Jan 17, 2024
2 parents 37030ab + 5606145 commit 153dd10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ jobs:
run: yarn ${{ env.testCmd }} --output-style=stream
- name: Publish tests reports
if: always()
uses: actions/upload-artifact@v4
# TODO upgrade to v4 when https://github.com/AmadeusITGroup/otter/issues/1198 is fixed
uses: actions/upload-artifact@v3
with:
name: ut-reports-${{ matrix.os }}
path: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/it-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ jobs:
path: it-tests.zip
- name: Publish tests reports
if: always()
uses: actions/upload-artifact@v4
# TODO upgrade to v4 when https://github.com/AmadeusITGroup/otter/issues/1198 is fixed
uses: actions/upload-artifact@v3
with:
name: it-reports-${{ matrix.os }}-${{ matrix.packageManager }}
path: 'packages/**/dist-test/it-report.xml'
Expand Down

0 comments on commit 153dd10

Please sign in to comment.