@@ -6,67 +6,76 @@ name: pipeline
6
6
7
7
on :
8
8
push :
9
- branches : [ "main", "feat/witness-run-action" ]
9
+ branches :
10
+ - ' *'
10
11
pull_request :
11
- branches : [ "main", "feat/witness-run-action" ]
12
+ branches :
13
+ - ' *'
12
14
13
15
jobs :
14
16
fmt :
15
- uses : ./ .github/workflows/witness.yml
17
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
16
18
with :
17
19
pull_request : ${{ github.event_name == 'pull_request' }}
18
20
step : fmt
19
21
attestations : " git github environment"
22
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
20
23
command : go fmt ./...
21
24
22
25
vet :
23
- uses : ./ .github/workflows/witness.yml
26
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
24
27
with :
25
28
pull_request : ${{ github.event_name == 'pull_request' }}
26
29
step : vet
27
30
attestations : " git github environment"
31
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
28
32
command : go vet ./...
29
33
30
34
# --ignore DL3002
31
35
lint :
32
- uses : ./ .github/workflows/witness.yml
36
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
33
37
with :
34
38
pull_request : ${{ github.event_name == 'pull_request' }}
35
39
step : lint
40
+ pre-command-attestations : " git github environment"
36
41
attestations : " git github environment"
42
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
37
43
pre-command : |
38
44
curl -sSfL https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64 -o /usr/local/bin/hadolint && \
39
45
chmod +x /usr/local/bin/hadolint
40
- command : hadolint -f sarif --ignore DL3002 Dockerfile > hadolint.sarif
46
+ command : hadolint -f sarif Dockerfile > hadolint.sarif
41
47
artifact-upload-name : hadolint.sarif
42
48
artifact-upload-path : hadolint.sarif
43
49
44
50
unit-test :
45
51
needs : [ fmt, vet, lint ]
46
- uses : ./ .github/workflows/witness.yml
52
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
47
53
with :
48
54
pull_request : ${{ github.event_name == 'pull_request' }}
49
55
step : unit-test
50
56
attestations : " git github environment"
57
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
51
58
command : go test ./... -coverprofile cover.out
52
59
artifact-upload-name : cover.out
53
60
artifact-upload-path : cover.out
54
61
55
62
sast :
56
63
needs : [ fmt, vet, lint ]
57
- uses : ./ .github/workflows/witness.yml
64
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
58
65
with :
59
66
pull_request : ${{ github.event_name == 'pull_request' }}
60
67
step : sast
68
+ pre-command-attestations : " git github environment"
61
69
attestations : " git github environment"
70
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
62
71
pre-command : python3 -m pip install semgrep==1.45.0
63
72
command : semgrep scan --config auto ./ --sarif -o semgrep.sarif
64
73
artifact-upload-name : semgrep.sarif
65
74
artifact-upload-path : semgrep.sarif
66
75
67
76
build :
68
77
needs : [ unit-test, sast ]
69
- uses : ./ .github/workflows/witness.yml
78
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
70
79
with :
71
80
pull_request : ${{ github.event_name == 'pull_request' }}
72
81
step : build
@@ -107,64 +116,56 @@ jobs:
107
116
use : true
108
117
109
118
- name : Build Image
110
- uses : testifysec/witness-run-action@2ae7f93c013ccf24b8ff52b4f042b32ca95ec7b8 # v0.1.5
119
+ uses : testifysec/witness-run-action@reusable-workflow # v0.2.0
111
120
with :
121
+ version : 0.6.0
112
122
step : build-image
113
- attestations : " git github environment"
123
+ attestations : " git github environment slsa"
124
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
114
125
command : |
115
126
/bin/sh -c "docker buildx build --platform linux/amd64,linux/arm64 -t ${{ steps.meta.outputs.tags }} --push ."
116
127
outputs :
117
128
tags : ${{ steps.meta.outputs.tags }}
118
129
119
130
save-image :
120
131
needs : build-image
121
- uses : ./ .github/workflows/witness.yml
132
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
122
133
with :
123
134
pull_request : ${{ github.event_name == 'pull_request' }}
124
- step : save-image
125
- attestations : " git github environment oci"
135
+ step : save-image
136
+ attestations : " git github environment slsa oci"
137
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
126
138
command : |
127
139
docker pull ${{ needs.build-image.outputs.tags }} && docker save ${{ needs.build-image.outputs.tags }} -o image.tar
128
140
artifact-upload-name : image.tar
129
141
artifact-upload-path : image.tar
130
142
131
143
generate-sbom :
132
144
needs : save-image
133
- uses : ./ .github/workflows/witness.yml
145
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
134
146
with :
135
147
pull_request : ${{ github.event_name == 'pull_request' }}
136
148
step : generate-sbom
137
- attestations : " git github environment"
149
+ pre-command-attestations : " git github environment"
150
+ attestations : " git github environment sbom"
151
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
138
152
artifact-download : image.tar
139
153
pre-command : |
140
154
curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
141
155
command : |
142
- syft packages docker-archive:/tmp/image.tar -o spdx-json --file syft.spdx.json
143
- artifact-upload-name : syft.spdx.json
144
- artifact-upload-path : syft.spdx.json
145
-
146
- cve-scan :
147
- needs : save-image
148
- uses : ./.github/workflows/witness.yml
149
- with :
150
- pull_request : ${{ github.event_name == 'pull_request' }}
151
- step : cve-scan
152
- attestations : " git github environment"
153
- artifact-download : image.tar
154
- pre-command : |
155
- curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin
156
- command : |
157
- grype docker-archive:/tmp/image.tar -o sarif --file grype.sarif
158
- artifact-upload-name : grype.sarif
159
- artifact-upload-path : grype.sarif
156
+ syft packages docker-archive:/tmp/image.tar --source-name=pkg:oci/testifysec/swf -o cyclonedx-json --file sbom.cdx.json
157
+ artifact-upload-name : sbom.cdx.json
158
+ artifact-upload-path : sbom.cdx.json
160
159
161
160
secret-scan :
162
161
needs : save-image
163
- uses : ./ .github/workflows/witness.yml
162
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
164
163
with :
165
164
pull_request : ${{ github.event_name == 'pull_request' }}
166
165
step : secret-scan
166
+ pre-command-attestations : " git github environment"
167
167
attestations : " git github environment"
168
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
168
169
artifact-download : image.tar
169
170
pre-command : |
170
171
curl -sSfL https://raw.githubusercontent.com/trufflesecurity/trufflehog/main/scripts/install.sh | sh -s -- -b /usr/local/bin
@@ -174,17 +175,19 @@ jobs:
174
175
artifact-upload-path : trufflehog.json
175
176
176
177
verify :
177
- needs : [ generate-sbom, cve-scan, secret-scan]
178
+ needs : [ generate-sbom, secret-scan]
178
179
179
180
if : ${{ github.event_name == 'push' }}
180
- uses : ./ .github/workflows/witness.yml
181
+ uses : testifysec/witness-run-action/ .github/workflows/witness.yml@reusable-workflow
181
182
with :
182
183
pull_request : ${{ github.event_name == 'pull_request' }}
183
184
step : verify
185
+ pre-command-attestations : " git github environment"
184
186
attestations : " git github environment"
187
+ archivista-server : " https://judge-api.aws-sandbox-staging.testifysec.dev"
185
188
artifact-download : image.tar
186
189
pre-command : |
187
- curl -sSfL https://github.com/in-toto/witness/releases/download/v0.1.14 /witness_0.1.14_linux_amd64 .tar.gz -o witness.tar.gz && \
190
+ curl -sSfL https://github.com/in-toto/witness/releases/download/v0.6.0 /witness_0.6.0_linux_amd64 .tar.gz -o witness.tar.gz && \
188
191
tar -xzvf witness.tar.gz -C /usr/local/bin/ && rm ./witness.tar.gz
189
192
command : |
190
- witness verify -p policy-signed.json -k swfpublic.pem -f /tmp/image.tar --enable-archivista -l debug
193
+ witness verify -p policy-signed.json -k swfpublic.pem -f /tmp/image.tar --enable-archivista --archivista-server https://judge-api.aws-sandbox-staging.testifysec.dev - l debug
0 commit comments