![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
866 B
YAML
29 lines
866 B
YAML
name: Test KICS action
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: mkdir -p myoutput
|
|
- name: Test KICS action
|
|
uses: ./
|
|
with:
|
|
path: test/samples/positive1.tf,test/samples/positive2.tf
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
timeout: 60
|
|
output_path: myoutput/
|
|
output_formats: sarif
|
|
ignore_on_exit: results
|
|
enable_comments: true
|
|
enable_annotations: true
|
|
enable_jobs_summary: true
|
|
comments_with_queries: true
|
|
excluded_column_for_comments_with_queries: "description_id,similarity_id,search_line,search_value,cis_description_id,cis_description_title,cis_description_text,cloud_provider"
|
|
- run: ls -la && ls -la myoutput
|
|
if: always()
|