build(deps): bump fortify/gha-export-vulnerabilities from fcb374411cff9809028c911dabb8b57dbdae623b to d2838d7a21c0499504efe8f384573f51bea799e0 #162
Workflow file for this run
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# A sample workflow which checks out your code and scans your desired k8s config files for misconfigurations using the Datree CLI. | |
# The results are then uploaded to GitHub Security Code Scanning. | |
# | |
# For more information and configurations options, see https://github.com/datreeio/action-datree/ | |
name: Datree | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
datree: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Run Datree policy check | |
continue-on-error: true | |
uses: datreeio/action-datree@de67ae7a5133d719dc794e1b75682cd4c5f94d8a | |
env: | |
# In order to use the Datree action you will need to have a Datree token. | |
# See https://hub.datree.io/setup/account-token#1-get-your-account-token-from-the-dashboard to acquire your token. | |
DATREE_TOKEN: ${{ secrets.DATREE_TOKEN }} | |
with: | |
# Add the path to the configuration file/s that you would like to test. | |
# See https://github.com/datreeio/action-datree#usage for all available options. | |
path: test-file.yaml | |
# Setting a SARIF output will generate a file named "datree.sarif" containing your test results | |
cliArguments: "-o sarif" | |
- name: Upload result to GitHub Code Scanning | |
uses: github/codeql-action/upload-sarif@2f93e4319b2f04a2efc38fa7f78bd681bc3f7b2f # v2.23.2 | |
with: | |
sarif_file: datree.sarif |