mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
name: Snyk report update
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: '0 0 * * 0' # midnight every Sunday
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
# a workaround to disable harden runner
|
|
STEP_SECURITY_HARDEN_RUNNER: ${{ vars.disable_harden_runner }}
|
|
|
|
jobs:
|
|
snyk-report:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
if: github.repository == 'argoproj/argo-cd'
|
|
name: Update Snyk report in the docs directory
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
if: ${{ vars.disable_harden_runner != 'true' }}
|
|
uses: step-security/harden-runner@6c3c2f2c1c457b00c10c4848d6f5491db3b629df # v2.18.0
|
|
with:
|
|
egress-policy: audit
|
|
agent-enabled: "false"
|
|
- name: Checkout code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build reports
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
run: |
|
|
make snyk-report
|
|
pr_branch="snyk-update-$(echo $RANDOM | md5sum | head -c 20)"
|
|
git checkout -b "$pr_branch"
|
|
git config --global user.email 'ci@argoproj.com'
|
|
git config --global user.name 'CI'
|
|
git add docs/snyk
|
|
git commit -m "[Bot] docs: Update Snyk reports" --signoff
|
|
git push --set-upstream origin "$pr_branch"
|
|
gh pr create -B master -H "$pr_branch" --title '[Bot] docs: Update Snyk report' --body ''
|