Skip to content

Bump actions/checkout from 6 to 7 #405

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #405

Workflow file for this run

name: Grype CI
on:
workflow_dispatch:
push:
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Scan current project
id: scan
uses: anchore/scan-action@v7
with:
path: '.'
- name: upload Anchore scan SARIF report
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: ${{ steps.scan.outputs.sarif }}
- name: Inspect action SARIF report
run: cat ${{ steps.scan.outputs.sarif }}