Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
bash scripts/updateVersion.sh

- name: Upload version.txt as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: version-info
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
bash scripts/updateVersion.sh

- name: Upload version.txt as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: version-info
Expand All @@ -103,7 +103,7 @@ jobs:
- run: npm ci
- run: npm test
- name: upload junit
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: junit
path: junit.xml
Expand All @@ -117,7 +117,7 @@ jobs:
check_name: Test Results
- run: npm run test:coverage
- name: upload code coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: Report-CodeCoverage
path: coverage
Expand Down
Loading