Github Actions - Google OSV scan #363
Workflow file for this run
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
#This action test builds EMHASS standalone Docker images, in each architecture. | |
name: "Test Docker" | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
permissions: | |
actions: read | |
security-events: write | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
[ | |
{ target_arch: amd64, os_version: debian }, | |
{ target_arch: armv7, os_version: debian }, | |
{ target_arch: armhf, os_version: raspbian }, | |
{ target_arch: aarch64, os_version: debian }, | |
] | |
steps: | |
- name: Checkout the repository | |
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 by digest | |
id: build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: ${{ matrix.platform.buildx }} | |
build-args: | | |
TARGETARCH=${{ matrix.platform.target_arch }} | |
os_version=${{ matrix.platform.os_version }} | |
load: true | |
- name: Test #Assume Docker fail with FileNotFound secrets_emhass.yaml error | |
run: docker run --rm -it ${{ steps.build.outputs.imageid }} | grep -q secrets_emhass.yaml && echo 0 || echo 1 | |
# Google OSV-Scanner | |
# Extract Debian and Python packadge list stored in Image | |
- name: Export Debian package list | |
run: mkdir OSV && docker run --rm --entrypoint '/bin/cat' ${{ steps.build.outputs.imageid }} /var/lib/dpkg/status >> ./${{ matrix.platform.target_arch }}.status | |
- name: Export Python package list | |
run: docker run --rm --entrypoint '/usr/bin/pip3' ${{ steps.build.outputs.imageid }} freeze >> ./${{ matrix.platform.target_arch }}-requirements.txt | |
# Check Docker image debian and python packages list for known vulnerabilities | |
- name: "Run scanner" | |
uses: "geoderp/osv-scanner-action/.github/workflows/[email protected]" | |
with: | |
download-artifact: "${{ matrix.platform.target_arch }}-packages" | |
matrix-property: "-${{ matrix.platform.target_arch }}" | |
scan-args: |- | |
--lockfile=dpkg-status:./${{ matrix.platform.target_arch }}.status | |
--lockfile=requirements.txt:./${{matrix.platform.target_arch }}-requirements.txt | |
--recursive | |
--skip-git | |
./ | |
permissions: | |
security-events: write | |
contents: read | |
actions: read |