Skip to content

Commit

Permalink
fix: avoid using invalid characters for artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Jun 19, 2024
1 parent 8f3d1cf commit d6c04e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ runs:
- name: Upload SBOM
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: SBOM (CycloneDX) [${{ inputs.report-tag != '' && inputs.report-tag || github.job }}]
name: SBOM (CycloneDX) [${{ env.REPORT_SLUG }}]
path: |
${{ env.REPORT_SLUG }}-sbom.json
${{ env.REPORT_SLUG }}-sbom.csv
Expand Down Expand Up @@ -133,7 +133,7 @@ runs:
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
if: always()
with:
name: Vulnerability report (HTML) [${{ inputs.report-tag != '' && inputs.report-tag || github.job }}]
name: Vulnerability report (HTML) [${{ env.REPORT_SLUG }}]
path: ${{ env.REPORT_FILENAME }}
retention-days: ${{ inputs.report-retention-days }}

Expand Down

0 comments on commit d6c04e7

Please sign in to comment.