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/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
show-annotations: ""
- name: Upload code coverage for ref branch
if: ${{ ! github.event.pull_request }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cov-result
path: ./coverage/lcov.info
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
summary-always: true
- name: Upload code coverage for ref branch
if: ${{ ! github.event.pull_request }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: benchmark-result
path: benchmark-data.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
make ci-test
- if: ${{ inputs.upload-artefacts }}
name: Upload artefacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: artefacts
path: ${{ inputs.upload-artefacts-dir }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ jobs:
output: "cyclonedx-sbom.json"
- if: ${{ ! inputs.skip-sbom || inputs.skip-sbom == '' }}
name: Upload SBOM as a Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: trivy-sbom-report
path: "${{ github.workspace }}/cyclonedx-sbom.json"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
- run: |
echo "Test artifact" >> test.txt
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: test-upload
path: test.txt
Loading