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/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ jobs:
cat /tmp/manifest-inspect/manifest.json
# used by other tools to identify if the expected tags were applied
- name: Upload manifest metadata
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ steps.artifact.outputs.name }}
path: /tmp/manifest-inspect/manifest.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
echo "TARGET_DIR=./target" >> $GITHUB_ENV
- run: ${{inputs.cargo_command_env_vars}} cargo build ${{ matrix.build_args }} --profile ${{ inputs.build_profile }}
working-directory: ${{ steps.rust_root.outputs.rust_root }}
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ${{ join(matrix.os) }}-${{ matrix.rust_target }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
run: ${{inputs.cargo_command_env_vars}} cargo llvm-cov report --cobertura --output-path cobertura.xml
working-directory: ${{ needs.vars.outputs.rust_root }}
- name: Archive code coverage results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: code-coverage-report
path: ${{ needs.vars.outputs.rust_root }}/target/llvm-cov/html/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scala-cve.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: sbt -Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1 dependencyCheckAggregate
- name: Move/rename file
run: mv ./target/scala-2.13/dependency-check-report.html ${{ steps.file_name.outputs.file_name }}
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ${{ steps.file_name.outputs.file_name }}
path: ${{ steps.file_name.outputs.file_name }}
Expand Down