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/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
run: go tool cover -html=coverage.out -o coverage.html

- name: Upload coverage HTML
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-report
path: coverage.html
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
run: go build -v -o bin/${{ matrix.target }} ./${{ matrix.path }}

- name: Upload binary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.target }}
path: bin/${{ matrix.target }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ jobs:
subject-path: 'bin/*'

- name: Upload binaries artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: binaries
path: bin/
retention-days: 1

- name: Upload SBOMs artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sboms
path: |
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
echo "${{ steps.meta.outputs.tags }}" > /tmp/digests/${{ matrix.image }}-tags

- name: Upload digest artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: digest-${{ matrix.image }}
path: /tmp/digests/
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:
output: '${{ matrix.image }}-trivy-results.sarif'

- name: Upload Trivy results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: trivy-${{ matrix.image }}
path: ${{ matrix.image }}-trivy-results.sarif
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
--url "https://github.com/${{ github.repository }}/releases/download/${{ needs.prepare.outputs.full_version }}"

- name: Upload Helm artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: helm
path: |
Expand Down
Loading