Skip to content

remove unused README #128

remove unused README

remove unused README #128

on: [push]
jobs:
build:
name: Build docker image
runs-on: ubuntu-latest
environment:
name: plugin-development
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: false
tags: app:latest
load: true
- name: check local images
run: docker images
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ secrets.AWS_REGION }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Scan artifact with Inspector
uses: ./ # Uses an action in the root directory
id: inspector
with:
artifact_type: 'container'
artifact_path: 'ubuntu:14.04'
output_sbom_path: 'sbom.json'
output_inspector_scan_path: 'inspector_scan.json'
output_inspector_scan_path_csv: 'inspector_scan.csv'
critical_threshold: 1
high_threshold: 1
medium_threshold: 1
low_threshold: 1
other_threshold: 1
- name: Demonstrate SBOM Output (JSON)
run: cat ${{ steps.inspector.outputs.artifact_sbom }}
- name: Demonstrate Inspector Scan Output (JSON)
run: cat ${{ steps.inspector.outputs.inspector_scan_results }}
- name: Demonstrate Inspector Scan Output (CSV)
run: cat ${{ steps.inspector.outputs.inspector_scan_results_csv }}
- name: Upload Inspector Scan Results
uses: actions/upload-artifact@v4
with:
name: Inspector Scan SBOM Results
path: |
${{ steps.inspector.outputs.inspector_scan_results }}
${{ steps.inspector.outputs.inspector_scan_results_csv }}
${{ steps.inspector.outputs.artifact_sbom }}
- name: Fail if vulnerability threshold is exceeded
run: echo ${{ steps.inspector.outputs.vulnerability_threshold_exceeded }}
- name: Upload image to registry
run: echo docker push