Skip to content

Scheduled build

Scheduled build #309

Workflow file for this run

name: Scheduled build
on:
branch_protection_rule:
schedule:
- cron: "12 9 * * *"
jobs:
# daily go security
gosec:
uses: ./.github/workflows/gosec.yml
# daily base image build and image build
image_base:
uses: ./.github/workflows/image_base.yml
secrets:
username: ${{ secrets.BOT_NAME }}
password: ${{ secrets.BOT_TOKEN }}
image:
needs: [image_base]
uses: ./.github/workflows/image.yml
secrets:
username: ${{ secrets.BOT_NAME }}
password: ${{ secrets.BOT_TOKEN }}
# daily openSSF scan
scorecard:
uses: ./.github/workflows/scorecard.yml
# daily rpm
rpm:
uses: ./.github/workflows/rpm.yml