Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Add products functions #116

Add products functions

Add products functions #116

---
name: Scan Docker Images
permissions:
actions: read
contents: read
security-events: write
on:
push:
branches:
- main
paths:
- .devcontainer/Dockerfile
- Dockerfile
schedule:
- cron: '0 4 * * 1' # Every monday at 4:00 UTC
pull_request: null
jobs:
scan-images:
name: Scan ${{ matrix.image_name }} Image
uses: Vianpyro/Template/.github/workflows/docker-image-verification.yml@main
strategy:
matrix:
include:
- image_name: DevContainer
dockerfile_path: ./Dockerfile
context: .devcontainer
- image_name: Production
dockerfile_path: ./Dockerfile
context: .
with:
image_name: ${{ matrix.image_name }}
dockerfile_path: ${{ matrix.dockerfile_path }}
context: ${{ matrix.context }}