[Snyk] Security upgrade jinja2 from 2.11.3 to 3.1.5 #2558
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: Documentation Updates | |
# Any change in triggers needs to be reflected in the concurrency group. | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
- ft/master/** | |
permissions: read-all | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.after }} | |
cancel-in-progress: true | |
jobs: | |
check_changes: | |
name: Deduce required tests from code changes | |
runs-on: ubuntu-18.04 | |
outputs: | |
docs-tree: ${{ steps.docs-tree.outputs.src }} | |
steps: | |
- name: Checkout code | |
if: ${{ !github.event.pull_request }} | |
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 | |
with: | |
persist-credentials: false | |
- name: Check code changes | |
uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721 | |
id: docs-tree | |
with: | |
filters: | | |
src: | |
- 'Documentation/**' | |
- 'bugtool/cmd/**' | |
- 'cilium/cmd/**' | |
- 'cilium-health/cmd/**' | |
- 'daemon/cmd/**' | |
- 'hubble-relay/cmd/**' | |
- 'install/kubernetes/**' | |
- 'operator/cmd/**' | |
# Runs only if code under Documentation or */cmd/ is changed as the docs | |
# should be unaffected otherwise. | |
build-html: | |
needs: check_changes | |
if: ${{ needs.check_changes.outputs.docs-tree == 'true' }} | |
name: Validate & Build HTML | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 | |
with: | |
persist-credentials: false | |
- uses: docker://cilium/docs-builder:latest | |
with: | |
entrypoint: ./Documentation/check-build.sh | |
args: html | |
- name: Send slack notification | |
if: ${{ !success() && (github.event_name == 'schedule' || github.event_name == 'push') }} | |
uses: 8398a7/action-slack@a74b761b4089b5d730d813fbedcd2ec5d394f3af | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took # selectable (default: repo,message) | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |