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
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ jobs:

- name: Upload CPU sampler log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cpu-sampler-${{ github.job }}-${{ github.run_attempt }}
path: cpu-sampler.log
retention-days: 7

- name: Upload test log
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rust-tests-log
path: rust-tests.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:

- name: Upload CPU sampler log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cpu-sampler-${{ github.job }}-${{ github.run_attempt }}
path: cpu-sampler.log
Expand All @@ -147,7 +147,7 @@ jobs:
# always: a timeout kill registers as 'cancelled', not 'failure',
# and partial results from a long suite must survive it.
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cluster-tests-log
path: cluster-tests.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ts-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,15 +238,15 @@ jobs:

- name: Upload CPU sampler log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cpu-sampler-${{ github.job }}-${{ github.run_attempt }}
path: cpu-sampler.log
retention-days: 7

- name: Upload localnet logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: localnet-logs
path: |
Expand Down
Loading