Skip to content

chore: test

chore: test #13

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow checks out code, builds an image, performs a container image
# scan with Anchore's Syft tool, and uploads the results to the GitHub Dependency
# submission API.
# For more information on the Anchore sbom-action usage
# and parameters, see https://github.com/anchore/sbom-action. For more
# information about the Anchore SBOM tool Syft, see
# https://github.com/anchore/syft
name: Anchore SBOM Scan
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
Anchore-Build-Scan:
permissions:
contents: write # required to upload to the API
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag localbuild/testimage:latest
# - name: Scan the image and upload dependency results
# uses: anchore/sbom-action@v0
# with:
# image: php:8.2-alpine3.16
## image: "localbuild/testimage:latest"
## artifact-name: image.spdx.json
# dependency-snapshot: true
- uses: kzantow-anchore/sbom-action@chore/update-github-artifact-client
with:
image: php:8.2-alpine3.16
# artifact-name: image.spdx.json
dependency-snapshot: true