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

.github/workflows/verify-docker-image.yml #108

.github/workflows/verify-docker-image.yml

.github/workflows/verify-docker-image.yml #108

---
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

Check failure on line 20 in .github/workflows/verify-docker-image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/verify-docker-image.yml

Invalid workflow file

error parsing called workflow ".github/workflows/verify-docker-image.yml" -> "Vianpyro/Template/.github/workflows/docker-image-verification.yml@main" : failed to fetch workflow: workflow was not found.
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 }}