Scan #634
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scan | |
#description: | |
# Daily 4a CVE report | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
cancel_outstanding: | |
name: Detect and cancel outstanding runs of this workflow | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-security-scan') }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Cancel Previous Runs | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-cancel') }} | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
scan_base: | |
name: Scan base Graphistry container | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-security-scan') }} | |
runs-on: ubuntu-latest-4-cores | |
timeout-minutes: 30 | |
env: | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
DOCKER_BUILDKIT: 1 | |
strategy: | |
matrix: | |
CUDA_SHORT_VERSION: ['11.5'] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: version envvars | |
run: | | |
echo "VERSION=latest" >> $GITHUB_ENV | |
echo "CUDA_SHORT_VERSION=${{ matrix.CUDA_SHORT_VERSION }}" >> $GITHUB_ENV | |
( rm -f CUDA_SHORT_VERSION || echo ok ) && ( echo ${{ matrix.CUDA_SHORT_VERSION }} > CUDA_SHORT_VERSION ) | |
- name: install grype | |
run: | | |
sudo docker images | |
curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin | |
- name: scan | |
env: | |
DOCKER_IMAGE: graphistry/graphistry-forge-base | |
DOCKER_IMAGE_SHORT: graphistry-forge-base | |
VERSION: latest | |
run: | | |
grype ${DOCKER_IMAGE}:${VERSION}-${CUDA_SHORT_VERSION} \ | |
--only-fixed \ | |
-o sarif \ | |
> ${DOCKER_IMAGE_SHORT}-${CUDA_SHORT_VERSION}.json | |
echo "========== SARIF REPORT ==========" | |
cat ${DOCKER_IMAGE_SHORT}-${CUDA_SHORT_VERSION}.json | |
- name: upload SARIF report | |
env: | |
DOCKER_IMAGE: graphistry/graphistry-forge-base | |
DOCKER_IMAGE_SHORT: graphistry-forge-base | |
VERSION: latest | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: ${DOCKER_IMAGE_SHORT}-${CUDA_SHORT_VERSION}.json | |
# category differentiates multiple results for one commit | |
category: ${DOCKER_IMAGE_SHORT}-${VERSION}-${CUDA_SHORT_VERSION} | |
- name: fail on fixable severe vulnerabilities | |
env: | |
DOCKER_IMAGE: graphistry/graphistry-forge-base | |
DOCKER_IMAGE_SHORT: graphistry-forge-base | |
VERSION: latest | |
run: | | |
grype ${DOCKER_IMAGE}:${VERSION}-${CUDA_SHORT_VERSION} \ | |
--only-fixed \ | |
--fail-on high \ | |
-o template -t .grype/grype.friendly.tmpl | |
scan_gak: | |
name: Scan graph-app-kit container | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-security-scan') }} | |
runs-on: ubuntu-latest-4-cores | |
timeout-minutes: 30 | |
env: | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
DOCKER_BUILDKIT: 1 | |
strategy: | |
matrix: | |
CUDA_SHORT_VERSION: ['11.5'] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: version envvars | |
run: | | |
echo "VERSION=latest" >> $GITHUB_ENV | |
echo "CUDA_SHORT_VERSION=${{ matrix.CUDA_SHORT_VERSION }}" >> $GITHUB_ENV | |
( rm -f CUDA_SHORT_VERSION || echo ok ) && ( echo ${{ matrix.CUDA_SHORT_VERSION }} > CUDA_SHORT_VERSION ) | |
- name: install grype | |
run: | | |
sudo docker images | |
curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin | |
- name: scan | |
env: | |
DOCKER_IMAGE: graphistry/graphistry-graph-app-kit-st | |
DOCKER_IMAGE_SHORT: graphistry-graph-app-kit-st | |
VERSION: latest | |
run: | | |
grype ${DOCKER_IMAGE}:${VERSION}-${CUDA_SHORT_VERSION} \ | |
--only-fixed \ | |
-o sarif \ | |
> ${DOCKER_IMAGE_SHORT}-${CUDA_SHORT_VERSION}.json | |
echo "========== SARIF REPORT ==========" | |
cat ${DOCKER_IMAGE_SHORT}-${CUDA_SHORT_VERSION}.json | |
- name: upload SARIF report | |
env: | |
DOCKER_IMAGE: graphistry/graphistry-graph-app-kit-st | |
DOCKER_IMAGE_SHORT: graphistry-graph-app-kit-st | |
VERSION: latest | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: ${DOCKER_IMAGE_SHORT}-${CUDA_SHORT_VERSION}.json | |
# category differentiates multiple results for one commit | |
category: ${DOCKER_IMAGE_SHORT}-${VERSION}-${CUDA_SHORT_VERSION} | |
- name: fail on fixable severe vulnerabilities | |
env: | |
DOCKER_IMAGE: graphistry/graphistry-graph-app-kit-st | |
DOCKER_IMAGE_SHORT: graphistry-graph-app-kit-st | |
VERSION: latest | |
run: | | |
grype ${DOCKER_IMAGE}:${VERSION}-${CUDA_SHORT_VERSION} \ | |
--only-fixed \ | |
--fail-on high \ | |
-o template -t .grype/grype.friendly.tmpl |