Skip to content

add compliance 2

add compliance 2 #2

Workflow file for this run

name: Security checks
on:
push:
branches:
- main
jobs:
image_scanning:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
id: changes
with:
fetch-depth: 0
- name: Changed Files
uses: tj-actions/[email protected]
- name: List all changed files
run: |
for file in ${{ steps.changes.outputs.all_changes }}; do
echo "$file was modified"
done