We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f3539 commit ac605baCopy full SHA for ac605ba
.github/workflows/security.yaml
@@ -10,7 +10,7 @@ on:
10
11
schedule:
12
# Run every 6 hours Monday-Friday!
13
- - cron: "0 0,6,12,18 * * 1-5"
+ - cron: "0 0/6 * * 1-5"
14
15
# Cancel in-progress runs for pull requests when developers push
16
# additional changes
@@ -117,6 +117,14 @@ jobs:
117
make -j "$image_job"
118
echo "image=$(cat "$image_job")" >> $GITHUB_OUTPUT
119
120
+ - name: Run Prisma Cloud image scan
121
+ uses: PaloAltoNetworks/prisma-cloud-scan@v1
122
+ with:
123
+ pcc_console_url: ${{ secrets.PRISMA_CLOUD_URL }}
124
+ pcc_user: ${{ secrets.PRISMA_CLOUD_ACCESS_KEY }}
125
+ pcc_pass: ${{ secrets.PRISMA_CLOUD_SECRET_KEY }}
126
+ image_name: ${{ steps.build.outputs.image }}
127
+
128
- name: Run Trivy vulnerability scanner
129
uses: aquasecurity/trivy-action@41f05d9ecffa2ed3f1580af306000f734b733e54
130
with:
0 commit comments