[Snyk] Security upgrade nginx from 1.25.1 to 1.25.3 #3100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: K8S Security Config Watch | |
on: | |
pull_request: | |
paths: | |
- "kubernetes/**" | |
- "!kubernetes/bin/**" | |
- ".github/workflows/k8s-security-config-watch.yml" | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout Master branch | |
- uses: actions/[email protected] | |
with: | |
ref: master | |
path: master | |
# checkout PR branch | |
- uses: actions/[email protected] | |
with: | |
path: candidate | |
ref: ${{ github.event.pull_request.head.sha }} | |
# pass the yamls directory to k8s-privilege-check git action | |
- name: Kubernetes Security Lint | |
uses: sysdiglabs/[email protected] | |
with: | |
sourceDir: "/master/kubernetes" | |
targetDir: "/candidate/kubernetes" | |
# evaluate escalation report | |
- name: Post Privilege Check | |
run: | | |
echo ${{ toJSON(steps.k8s_privilege_check.outputs.escalation_report) }} |