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

Add products endpoint (#11) #93

Add products endpoint (#11)

Add products endpoint (#11) #93

---
name: Scan Images
permissions:
actions: read
contents: read
security-events: write
on:
push:
branches:
- main
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 }}