File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,21 @@ permissions:
12
12
id-token : write
13
13
14
14
jobs :
15
- daily_job :
15
+ test_multi_arch :
16
16
runs-on : ubuntu-latest
17
17
environment :
18
18
name : plugin-development
19
+ strategy :
20
+ matrix :
21
+ platform :
22
+ - " linux/386"
23
+ - " linux/amd64"
24
+ - " linux/arm/v5"
25
+ - " linux/arm/v7"
26
+ - " linux/arm64/v8"
27
+ - " linux/ppc64le"
28
+ - " linux/riscv64"
29
+ - " linux/s390x"
19
30
20
31
steps :
21
32
@@ -30,13 +41,13 @@ jobs:
30
41
aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
31
42
role-to-assume : ${{ secrets.AWS_IAM_ROLE }}
32
43
33
- - name : Test multi-arch image
44
+ - name : Test multi-arch image - ${{ matrix.platform }}
34
45
id : inspector
35
46
uses : aws-actions/vulnerability-scan-github-action-for-amazon-inspector@investigate_multi_arch
36
47
with :
37
48
artifact_type : ' container'
38
49
artifact_path : ' debian:trixie'
39
- platform : " linux/amd64 "
50
+ platform : ${{ matrix.platform }}
40
51
display_vulnerability_findings : " enabled"
41
52
sbomgen_version : " latest"
42
53
You can’t perform that action at this time.
0 commit comments