Skip to content
Closed
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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: cargo bench --bench config_parsing --bench registry_lookup --bench version_comparison -- --noplot

- name: Store benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmark-results
path: target/criterion/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
JARVY_FAST_TEST: 1

- name: Upload HTML coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-report
path: target/llvm-cov/html/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-cross-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-results-${{ matrix.platform }}
path: |
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
#
# - name: Upload Results
# if: always()
# uses: actions/upload-artifact@v4
# uses: actions/upload-artifact@v7
# with:
# name: e2e-results-${{ matrix.platform }}
# path: target/e2e-results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ jobs:
continue-on-error: true

- name: Upload corpus
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: fuzz-corpus-${{ matrix.target }}
path: fuzz/corpus/${{ matrix.target }}
retention-days: 90

- name: Upload crash artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: failure()
with:
name: fuzz-crashes-${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:

- name: Upload rendered manifests as workflow artifact
if: always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: helm-rendered-${{ steps.version.outputs.version }}
path: /tmp/render/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
continue-on-error: true

- name: Upload mutation results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: mutation-results
path: mutants.out/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
cargo generate-rpm
fi
- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.platform }}${{ matrix.cross && format('-{0}', matrix.pkg_arch) || '' }}-release-artifacts
path: ${{ matrix.artifact_paths }}
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
done

- name: Upload SBOMs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom-${{ env.VERSION }}
path: |
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
done

- name: Upload signed artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: signed-artifacts-${{ env.VERSION }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
echo '```' >> $GITHUB_STEP_SUMMARY

- name: Upload geiger report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: geiger-report
path: geiger-report.txt
Expand Down
Loading