Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
cd ..; \
done;
- name: Preserve built Apache for perl-test job
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: apache-trunk
path: /usr/local/apache2
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
curl --fail --max-time 10 http://localhost:8090
curl --fail --max-time 10 http://localhost:8090/mod_cluster_manager
- name: Preserve logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: Windows logs for ${{ matrix.os }}
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
cd test
sh testsuite.sh
- name: Preserve test logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: Test logs
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
grep "Result: PASS" -q t/logs/test-perl.log
exit $?
- name: Preserve test logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: Perl tests logs
Expand All @@ -329,7 +329,7 @@ jobs:
- name: Build doxygen docs
run: doxygen
- name: Preserve doxygen docs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Doxygen docs
path: doxygen-out/html/*
Expand Down