Enhance DevContainer setup with X11 support and update dependencies #18
Workflow file for this run
This file contains hidden or 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
| name: Scan Docker 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 | |
| with: | |
| image_name: ${{ matrix.image_name }} | |
| dockerfile_path: ${{ matrix.dockerfile_path }} | |
| context: ${{ matrix.context }} |