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
8 changes: 4 additions & 4 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:

- name: Upload current benchmark results
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmark-results-main
path: |
Expand All @@ -233,7 +233,7 @@ jobs:

- name: Upload PR benchmark results
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmark-results-pr-${{ github.event.pull_request.number }}
path: |
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:

- name: Upload benchmark report to main branch
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmark-report
path: benches/BENCHMARKS.md
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
--output benchmark-results.json

- name: Upload system benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: system-benchmark-results-${{ github.run_number }}
path: benches/benchmark-results.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/chaos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Upload chaos test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: chaos-test-results-${{ github.run_number }}
path: |
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
fi

- name: Upload report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: chaos-test-report-${{ github.run_number }}
path: chaos-report.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
run: cargo build --release --workspace

- name: Upload binary artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: anode-linux-amd64
path: target/release/anode
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
RUSTDOCFLAGS: -D warnings

- name: Upload documentation
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: documentation
path: target/doc/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Upload container logs on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docker-compose-logs
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
EOF

- name: Upload documentation
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rustdoc
path: target/doc/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
echo "Successfully templated with custom image"

- name: Upload templated charts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: helm-templates
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/k3d.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: helm-template-test-results
path: /tmp/helm-template-*/
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:

- name: Upload logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: k3d-logs-${{ github.run_number }}
path: k3d-logs/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
run: cargo geiger --all-features --output-format GitHubMarkdown > geiger-report.md

- name: Upload geiger report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: geiger-report
path: geiger-report.md
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
echo '```' >> bloat-summary.md

- name: Upload bloat report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bloat-report
path: |
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:

- name: Upload semver report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: semver-report
path: semver-report.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Upload audit report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cargo-audit-report
path: audit-report.json
Expand Down
Loading