Skip to content

Commit 93b54d0

Browse files
committed
Update archivista URL and witness version
Signed-off-by: John Kjell <[email protected]>
1 parent dd4246d commit 93b54d0

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/pipeline.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
with:
1919
pull_request: ${{ github.event_name == 'pull_request' }}
2020
step: fmt
21+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
2122
attestations: "git github environment"
2223
command: go fmt ./...
2324

@@ -26,6 +27,7 @@ jobs:
2627
with:
2728
pull_request: ${{ github.event_name == 'pull_request' }}
2829
step: vet
30+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
2931
attestations: "git github environment"
3032
command: go vet ./...
3133

@@ -35,6 +37,7 @@ jobs:
3537
with:
3638
pull_request: ${{ github.event_name == 'pull_request' }}
3739
step: lint
40+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
3841
pre-command-attestations: "git github environment"
3942
attestations: "git github environment"
4043
pre-command: |
@@ -50,6 +53,7 @@ jobs:
5053
with:
5154
pull_request: ${{ github.event_name == 'pull_request' }}
5255
step: unit-test
56+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
5357
attestations: "git github environment"
5458
command: go test ./... -coverprofile cover.out
5559
artifact-upload-name: cover.out
@@ -61,6 +65,7 @@ jobs:
6165
with:
6266
pull_request: ${{ github.event_name == 'pull_request' }}
6367
step: sast
68+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
6469
pre-command-attestations: "git github environment"
6570
attestations: "git github environment"
6671
pre-command: python3 -m pip install semgrep==1.45.0
@@ -74,6 +79,7 @@ jobs:
7479
with:
7580
pull_request: ${{ github.event_name == 'pull_request' }}
7681
step: build
82+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
7783
attestations: "git github environment"
7884
command: go build -o bin/software main.go
7985

@@ -116,9 +122,10 @@ jobs:
116122
- name: Build Image
117123
uses: testifysec/witness-run-action@reusable-workflow # v0.2.0
118124
with:
119-
version: 0.6.0
125+
version: 0.7.0
120126
witness-install-dir: /usr/local/bin
121127
step: build-image
128+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
122129
attestations: "git github environment oci slsa"
123130
command: |
124131
/bin/sh -c "docker buildx build -t ${{ steps.meta.outputs.tags }} -o type=docker,dest=image.tar --push ."
@@ -138,6 +145,7 @@ jobs:
138145
with:
139146
pull_request: ${{ github.event_name == 'pull_request' }}
140147
step: generate-sbom
148+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
141149
pre-command-attestations: "git github environment"
142150
attestations: "git github environment sbom"
143151
artifact-download: image.tar
@@ -154,6 +162,7 @@ jobs:
154162
with:
155163
pull_request: ${{ github.event_name == 'pull_request' }}
156164
step: secret-scan
165+
archivista-server: "https://judge.aws-sandbox-staging.testifysec.dev"
157166
pre-command-attestations: "git github environment"
158167
attestations: "git github environment"
159168
artifact-download: image.tar

.github/workflows/witness.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- if: ${{ inputs.pre-command != '' && inputs.pull_request == false }}
6666
uses: testifysec/witness-run-action@79320a907f611f2fb40ced8e13c66af988b2d9db # v0.2.2
6767
with:
68-
version: 0.6.0
68+
version: 0.7.0
6969
witness-install-dir: /usr/local/bin
7070
archivista-server: ${{ inputs.archivista-server }}
7171
step: pre-${{ inputs.step }}
@@ -77,7 +77,7 @@ jobs:
7777
- if: ${{ inputs.pull_request == false }}
7878
uses: testifysec/witness-run-action@79320a907f611f2fb40ced8e13c66af988b2d9db # v0.2.2
7979
with:
80-
version: 0.6.0
80+
version: 0.7.0
8181
witness-install-dir: /usr/local/bin
8282
archivista-server: ${{ inputs.archivista-server }}
8383
step: ${{ inputs.step }}

0 commit comments

Comments
 (0)