Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions #15

Merged
merged 2 commits into from
Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: docker-build

on:
push:
tags:
- 'v*'

env:
REGISTRY: docker.io
IMAGE_NAME: 42crunch/scand-manager

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Registry ${{ env.REGISTRY }}
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
-
name: Build and export to Docker
uses: docker/build-push-action@v4
with:
context: .
load: true
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
-
name: Scan image
id: scan
uses: Azure/container-scan@v0
with:
image-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
severity-threshold: CRITICAL
run-quality-checks: true
-
name: Build and push
if: success()
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
42 changes: 42 additions & 0 deletions .github/workflows/docker-scan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: docker-scan

on:
schedule:
- cron: '30 2 * * *'

env:
REGISTRY: docker.io
IMAGE_NAME: 42crunch/scand-manager

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Scan image
id: scan
uses: Azure/container-scan@v0
with:
image-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
severity-threshold: CRITICAL
run-quality-checks: true
-
name: Send mail
if: failure()
run: |
cat <<EOF > email.txt
From: No Reply <[email protected]>
To: Security <[email protected]>
Subject: Container Scan Report of ${{ github.repository }}
Date: $(date)

$(cat ${{ steps.scan.outputs.scan-report-path }})
$(cat ${{ steps.scan.outputs.check-run-url }})
EOF

curl \
--ssl-reqd smtp://smtp.gmail.com \
--mail-from [email protected] \
--mail-rcpt [email protected] \
--upload-file email.txt \
--user ${{ secrets.MAIL_USERNAME }}:${{ secrets.MAIL_PASSWORD }}