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/IJ-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
LATEST_EAP_SNAPSHOT=$(./gradlew printProductsReleases | grep 'IC-' | head -n 1 | cut -d'-' -f2)
./gradlew build --continue -PplatformVersion=$LATEST_EAP_SNAPSHOT
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: always()
with:
name: test-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/IJ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
REPORTS=$(cat ${{ github.workspace }}/build/reports/pluginVerifier/*/report.md | sed 's/^#/##/')
echo "$REPORTS" >> $GITHUB_STEP_SUMMARY
- name: Upload report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: verifier-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: ./gradlew build
- name: Upload test logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-logs
path: build/test-results/test/
4 changes: 2 additions & 2 deletions .github/workflows/it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
Xvfb -ac :99 -screen 0 1920x1080x16 &
sleep 10
./gradlew integrationTest --info
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: ${{ runner.os }}-integration-test-reports
path: build/reports/tests/integrationTest
if: always()
- name: Archiving screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshots
path: |
Expand Down
Loading