Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/cesar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,17 @@ jobs:
"removeHistory" : "'"${REMOVE_HISTORY}"'"
}' > "$METADATA_PATH"

- name: Zip kics Folder
- name: Remove Test Folder
run: |
cd $GITHUB_WORKSPACE
zip -qr kics.zip kics/
rm -rf kics/test/

- name: Save kics
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: kics
path: ${{ github.workspace }}/kics.zip
path: |
kics/assets/
kics/bin/
retention-days: 1

- name: Pr parameters
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/ci-projects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,17 @@ jobs:
"version": "'"${ENGINE_VERSION}"'"
}' > "$METADATA_PATH"

- name: Zip kics Folder
- name: Remove Test Folder
run: |
cd $GITHUB_WORKSPACE
zip -qr kics.zip kics/
rm -rf kics/test/

- name: Save kics
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: kics
path: ${{ github.workspace }}/kics.zip
path: |
kics/assets/
kics/bin/
retention-days: 1

- name: Pr parameters
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/run-projects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,7 @@ jobs:
uses: actions/download-artifact@v4.1.3
with:
name: kics
path: .

- name: Unzip kics
run: |
unzip -q kics.zip
path: kics/

- name: Download Json
uses: actions/download-artifact@v4.1.3
Expand Down Expand Up @@ -101,6 +97,7 @@ jobs:
- name: Run Engines Executor
run: |
mkdir -p $GITHUB_WORKSPACE/results
chmod +x $GITHUB_WORKSPACE/kics/bin/kics
./cli/executor run kics \
-b $GITHUB_WORKSPACE/kics/bin/kics \
-s $GITHUB_WORKSPACE/zips/ \
Expand Down
Loading