mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-08-01 08:18:44 -04:00
- Replaced the All-in-One (AIO) deployment setup with a Standard Deployment configuration, introducing .env.advanced.example for advanced settings. - Updated .dockerignore to reflect the new environment file structure. - Removed .env.aio.example and associated references from documentation and workflows. - Enhanced installation instructions to clarify the new Standard Deployment process. - Updated GitHub Actions workflows to align with the new deployment structure, including smoke tests and image builds. - Improved documentation for environment variable references and deployment options.
84 lines
2.0 KiB
YAML
84 lines
2.0 KiB
YAML
name: Trivy Security Scans
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- development
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- development
|
|
schedule:
|
|
- cron: "0 8 * * 1"
|
|
|
|
jobs:
|
|
filesystem-scan:
|
|
name: Trivy Filesystem Scan (Source Code)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Scan source code (Filesystem) with Trivy
|
|
uses: aquasecurity/trivy-action@master
|
|
with:
|
|
scan-type: fs
|
|
scan-ref: .
|
|
format: table
|
|
exit-code: 1
|
|
ignore-unfixed: true
|
|
severity: CRITICAL,HIGH
|
|
trivyignores: .trivyignore
|
|
|
|
image-scan:
|
|
name: Trivy Docker Image Scan
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build images
|
|
run: |
|
|
docker build -f docker/Dockerfile --target backend -t adventurelog-backend .
|
|
docker build -f docker/Dockerfile --target frontend -t adventurelog-frontend .
|
|
docker build -f docker/Dockerfile --target aio -t adventurelog .
|
|
|
|
- name: Scan backend image
|
|
uses: aquasecurity/trivy-action@master
|
|
with:
|
|
image-ref: adventurelog-backend
|
|
format: table
|
|
exit-code: 1
|
|
ignore-unfixed: true
|
|
severity: CRITICAL,HIGH
|
|
trivyignores: .trivyignore
|
|
|
|
- name: Scan frontend image
|
|
uses: aquasecurity/trivy-action@master
|
|
with:
|
|
image-ref: adventurelog-frontend
|
|
format: table
|
|
exit-code: 1
|
|
ignore-unfixed: true
|
|
severity: CRITICAL,HIGH
|
|
trivyignores: .trivyignore
|
|
|
|
- name: Scan Standard Deployment image
|
|
uses: aquasecurity/trivy-action@master
|
|
with:
|
|
image-ref: adventurelog
|
|
format: table
|
|
exit-code: 1
|
|
ignore-unfixed: true
|
|
severity: CRITICAL,HIGH
|
|
trivyignores: .trivyignore
|