Skip to content

Commit

Permalink
bump actions/attest from 2.0.0 to 2.0.1 (#133)
Browse files Browse the repository at this point in the history
Signed-off-by: Brian DeHamer <[email protected]>
  • Loading branch information
bdehamer authored Dec 6, 2024
1 parent 1455967 commit 34581d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ attest:
your SBOM has been generated:

```yaml
- uses: actions/attest-sbom@v1
- uses: actions/attest-sbom@v2
with:
subject-path: '<PATH TO ARTIFACT>'
sbom-path: '<PATH TO SBOM>'
Expand All @@ -60,7 +60,7 @@ attest:
See [action.yml](action.yml)

```yaml
- uses: actions/attest-sbom@v1
- uses: actions/attest-sbom@v2
with:
# Path to the artifact serving as the subject of the attestation. Must
# specify exactly one of "subject-path" or "subject-digest". May contain a
Expand Down Expand Up @@ -136,6 +136,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
Expand All @@ -152,7 +153,7 @@ jobs:
format: 'spdx-json'
output-file: 'sbom.spdx.json'
- name: Attest
uses: actions/attest-sbom@v1
uses: actions/attest-sbom@v2
with:
subject-path: '${{ github.workspace }}/my-app'
sbom-path: 'sbom.spdx.json'
Expand All @@ -164,7 +165,7 @@ If you are generating multiple artifacts, you can attest all of them at the same
time by using a wildcard in the `subject-path` input.

```yaml
- uses: actions/attest-sbom@v1
- uses: actions/attest-sbom@v2
with:
subject-path: 'dist/**/my-bin-*'
sbom-path: '${{ github.workspace }}/my-bin.sbom.spdx.json'
Expand All @@ -177,13 +178,13 @@ Alternatively, you can explicitly list multiple subjects with either a comma or
newline delimited list:

```yaml
- uses: actions/attest-sbom@v1
- uses: actions/attest-sbom@v2
with:
subject-path: 'dist/foo, dist/bar'
```

```yaml
- uses: actions/attest-sbom@v1
- uses: actions/attest-sbom@v2
with:
subject-path: |
dist/foo
Expand Down Expand Up @@ -246,7 +247,7 @@ jobs:
format: 'cyclonedx-json'
output-file: 'sbom.cyclonedx.json'
- name: Attest
uses: actions/attest-sbom@v1
uses: actions/attest-sbom@v2
id: attest
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:
id: generate-sbom-predicate
with:
sbom-path: ${{ inputs.sbom-path }}
- uses: actions/[email protected].0
- uses: actions/[email protected].1
id: attest
with:
subject-path: ${{ inputs.subject-path }}
Expand Down

0 comments on commit 34581d8

Please sign in to comment.