Skip to content
Merged
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/docker-push-to-registries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ jobs:
mvn verify --batch-mode -DskipTests -Dgpg.skip=true

- name: Get SBOM from artifact
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
if: ${{ inputs.DOWNLOAD_SBOM }}
continue-on-error: true
with:
name: ${{ github.run_number }}${{ inputs.PACKAGE_DIRECTORY != '.' && format('.{0}', inputs.PACKAGE_DIRECTORY) || '' }}.sbom.json
path: ${{ inputs.PATH }}

- name: Download build artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
if: ${{ inputs.BUILD_ARTIFACT }}
with:
name: ${{ inputs.BUILD_ARTIFACT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/grype-image-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Download image artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
if: ${{ inputs.IMAGE_FROM_ARTIFACT }}
with:
name: ${{ inputs.SCAN_NAME }}.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-attach-sbom-to-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download SBOM
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ inputs.SBOM_ARTIFACT }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-build-pypi-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
--user

- name: Download SBOM
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ needs.generate-and-scan-application-sbom.outputs.artifact-name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-push-to-registries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
uses: actions/checkout@v4.2.2

- name: Download Application SBOM
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ needs.generate-and-scan-application-sbom.outputs.artifact-name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-scan-sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download SBOM
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ inputs.SCAN_NAME }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy-image-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Download image artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
if: ${{ inputs.IMAGE_FROM_ARTIFACT }}
with:
name: ${{ inputs.SCAN_NAME }}.tar
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/vulnerability-scanning-on-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ github.run_number }}${{ inputs.PACKAGE_DIRECTORY != '.' && format('.{0}', inputs.PACKAGE_DIRECTORY) || '' }}.sbom.json

Expand All @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ github.run_number }}${{ inputs.PACKAGE_DIRECTORY != '.' && format('.{0}', inputs.PACKAGE_DIRECTORY) || '' }}.sbom.json

Expand All @@ -125,7 +125,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v6
with:
name: ${{ github.run_number }}${{ inputs.PACKAGE_DIRECTORY != '.' && format('.{0}', inputs.PACKAGE_DIRECTORY) || '' }}.sbom.json

Expand Down