1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-11-06 16:00:28 +01:00
WGDashboard/.github/workflows/main.yml

57 lines
2.1 KiB
YAML
Raw Normal View History

2024-08-24 09:49:51 +02:00
name: Docker Image Build and Analysis
2024-08-24 08:01:56 +02:00
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'
jobs:
build-and-analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
2024-08-24 08:22:37 +02:00
- name: Log in to Docker Hub
2024-08-24 08:18:49 +02:00
uses: docker/login-action@v3
2024-08-24 08:01:56 +02:00
with:
2024-08-24 08:22:37 +02:00
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2024-08-24 08:01:56 +02:00
2024-08-24 09:49:51 +02:00
- name: Build Docker image
id: build-image
run: |
2024-08-24 09:53:30 +02:00
echo "Building Docker image..."
2024-08-24 09:49:51 +02:00
docker build -t my-app-image:latest .
2024-08-24 09:53:30 +02:00
echo "Docker image built successfully."
2024-08-24 09:49:51 +02:00
- name: Install Docker Scout
run: |
2024-08-24 09:53:30 +02:00
echo "Installing Docker Scout..."
2024-08-24 09:49:51 +02:00
curl -sSfL https://raw.githubusercontent.com/docker/scout-cli/main/install.sh | sh -s --
2024-08-24 09:53:30 +02:00
echo "Docker Scout installed successfully."
2024-08-24 09:49:51 +02:00
- name: Analyze Docker image with Docker Scout
id: analyze-image
run: |
2024-08-24 09:53:30 +02:00
echo "Analyzing Docker image with Docker Scout..."
docker scout cves my-app-image:latest > scout-results.txt
cat scout-results.txt # Print the report to the workflow logs for easy viewing
echo "Docker Scout analysis completed."
2024-08-24 09:56:40 +02:00
- name: Post Comment on Issue or PR
run: |
COMMENT="**Docker Image Build and Analysis Report**\n\nThe Docker image was built and analyzed successfully.\n\n**Build Summary:**\n- Image Tag: my-app-image:latest\n\n**Analysis Report:**\n\`\`\`\n$(cat scout-results.txt)\n\`\`\`"
# Post comment using GitHub API
curl -X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
-d "{\"body\": \"$COMMENT\"}" \
2024-08-24 10:00:51 +02:00
"https://api.github.com/repos/NOXCIS/WGDashboard/issues/1/comments" # Replace '1' with the issue or PR number