mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
5ea16cb947
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21 lines
333 B
YAML
21 lines
333 B
YAML
name: syft-sbom-ci
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
syft-sbom:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Anchore SBOM Action
|
|
uses: anchore/sbom-action@v0.14.2
|
|
with:
|
|
artifact-name: ${{ github.event.repository.name }}-spdx.json
|
|
|