-
-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (38 loc) · 989 Bytes
/
security_scanning.yml
File metadata and controls
44 lines (38 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
name: Security Scanning 🕵️
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_test_container:
name: 'Build test container'
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Build local container
uses: docker/build-push-action@v7
with:
file: Containerfile
tags: 'ci/test:latest'
push: false
- name: Scan image with Anchore Grype
uses: anchore/scan-action@v7
id: scan
with:
image: 'ci/test:latest'
fail-build: false
- name: Inspect action SARIF report
run: jq . ${{ steps.scan.outputs.sarif }}
- name: Upload Anchore scan SARIF report
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: ${{ steps.scan.outputs.sarif }}