Skip to content

Commit 269a8ab

Browse files
committed
DEBUG GH workflow for Vuls
Signed-off-by: tdruez <[email protected]>
1 parent 015d4fc commit 269a8ab

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/sca-integration-vuls.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,29 @@ permissions:
1111
contents: read
1212

1313
env:
14-
IMAGE_REFERENCE: "python:3.13.0-slim"
14+
IMAGE_REFERENCE: "python:3.13.0"
1515

1616
jobs:
1717
generate-and-load-sbom:
1818
runs-on: ubuntu-24.04
1919
steps:
20+
- name: Checkout repo
21+
uses: actions/checkout@v4
22+
2023
- name: Start Python container
2124
run: |
2225
docker run -d --name sbom_target ${{ env.IMAGE_REFERENCE }} tail -f /dev/null
2326
24-
- name: Prepare target container for OS detection
27+
- name: Prepare container for deep scan
2528
run: |
2629
docker exec sbom_target apt-get update
27-
docker exec sbom_target apt-get install -y lsb-release
30+
docker exec sbom_target apt-get install -y lsb-release sudo apt-utils
2831
2932
- name: Pull Vuls and dictionary images
3033
run: |
3134
docker pull vuls/vuls
32-
# docker pull vuls/go-cve-dictionary
33-
# docker pull vuls/goval-dictionary
35+
docker pull vuls/go-cve-dictionary
36+
docker pull vuls/goval-dictionary
3437
3538
- name: Prepare Vuls config.toml
3639
run: |

0 commit comments

Comments
 (0)