-
-
Notifications
You must be signed in to change notification settings - Fork 43
69 lines (61 loc) · 2.02 KB
/
scans.yml
File metadata and controls
69 lines (61 loc) · 2.02 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Anchore-Grype Security Scans
on:
push:
branches: ["main"]
workflow_dispatch:
schedule:
# Run this against the default branch every Monday at 5:30AM
- cron: "30 5 * * 2"
permissions: write-all
jobs:
scan:
runs-on: ubuntu-latest
env:
DOCKER_IMAGE: ortussolutions/commandbox
COMMANDBOX_VERSION: 6.3.2
strategy:
matrix:
include:
- BUILD_IMAGE_DOCKERFILE: builds/base/Dockerfile
BUILD_IMAGE_TAGS: CommandBox
# - BUILD_IMAGE_DOCKERFILE: builds/debian/Lucee5.Dockerfile
# BUILD_IMAGE_TAG: lucee5.3.10.97
# - BUILD_IMAGE_DOCKERFILE: builds/debian/Adobe2018.Dockerfile
# BUILD_IMAGE_TAG: adobe2018.0.15.330106
# - BUILD_IMAGE_DOCKERFILE: builds/debian/Adobe2021.Dockerfile
# BUILD_IMAGE_TAG: adobe2021.0.05.330109
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Build local container
uses: docker/build-push-action@v6
env:
DOCKER_BUILDKIT: 1
with:
context: .
file: ${{ matrix.BUILD_IMAGE_DOCKERFILE }}
build-args: COMMANDBOX_VERSION=${{ env.COMMANDBOX_VERSION }}
push: false
load: true
tags: ${{ env.DOCKER_IMAGE }}:${{ matrix.BUILD_IMAGE_TAGS }}
- name: Scan generated packages
uses: anchore/scan-action@v7
id: securityscan
with:
image: ${{ env.DOCKER_IMAGE }}:${{ matrix.BUILD_IMAGE_TAGS }}
severity-cutoff: "high"
fail-build: false
by-cve: "true"
only-fixed: true
- name: Upload Anchore Report
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: ${{ steps.securityscan.outputs.sarif }}
category: "BoxLang-Runtime-${{ github.env.BRANCH }}"