WGDashboard/.github/workflows/main.yml

67 lines
2 KiB
YAML
Raw Normal View History

2024-08-24 14:01:56 +08:00
name: Docker Image Build and Analysis
on:
schedule:
- cron: "0 0 * * *" # Schedule the workflow to run daily at midnight (UTC time). Adjust the time if needed.
workflow_dispatch: # Manual run trigger
inputs:
trigger-build:
description: 'Trigger a manual build and push'
default: 'true'
2024-08-24 15:26:30 +08:00
env:
REGISTRY: docker.io
IMAGE_NAME: ${{ github.repository }}
SHA: ${{ github.event.pull_request.head.sha || github.event.after }}
2024-08-24 14:01:56 +08:00
jobs:
build-and-analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
2024-08-24 15:04:46 +08:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
2024-08-24 14:22:37 +08:00
- name: Log in to Docker Hub
2024-08-24 14:18:49 +08:00
uses: docker/login-action@v3
2024-08-24 14:01:56 +08:00
with:
2024-08-24 15:26:30 +08:00
registry: ${{ env.REGISTRY }}
2024-08-24 14:22:37 +08:00
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2024-08-24 15:26:30 +08:00
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4.4.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
labels: |
org.opencontainers.image.revision=${{ env.SHA }}
tags: |
type=edge,branch=$repo.default_branch
type=semver,pattern=v{{version}}
type=sha,prefix=,suffix=,format=short
2024-08-24 14:01:56 +08:00
2024-08-24 15:26:30 +08:00
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v4.0.0
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
2024-08-24 15:18:21 +08:00
- name: Docker Scout Analysis
2024-08-24 15:04:46 +08:00
id: docker-scout
2024-08-24 15:18:21 +08:00
run: |
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
docker/scout-action:v1 \
cves \
--image wg-dashboard:latest \
--github-token ${{ secrets.GITHUB_TOKEN }}