File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 test-linux-amd64 :
1111 runs-on : ubuntu-latest
1212 steps :
13- - name : Update CA certificates
14- run : sudo apt-get update && sudo apt-get install --reinstall -y ca-certificates
13+ - name : Check TUF connectivity
14+ run : |
15+ echo google
16+ nslookup tuf-repo-cdn.sigstore.dev 8.8.8.8
17+ echo systemd-resolvd
18+ nslookup tuf-repo-cdn.sigstore.dev 127.0.0.53
19+ echo default
20+ nslookup tuf-repo-cdn.sigstore.dev 127.0.0.53
21+ echo TUF
22+ curl -v --head https://tuf-repo-cdn.sigstore.dev/14.root.json
1523 - name : Test suite setup
1624 uses : fluxcd/gha-workflows/.github/actions/setup-kubernetes@v0.4.0
1725 with :
Original file line number Diff line number Diff line change @@ -2256,6 +2256,14 @@ func TestOCIRepository_reconcileSource_verifyOCISourceSignatureCosign(t *testing
22562256 }
22572257}
22582258
2259+ func TestSigstoreTUFRepositoryTLSVerification (t * testing.T ) {
2260+ resp , err := http .Get ("https://tuf-repo-cdn.sigstore.dev/14.root.json" )
2261+ if err != nil {
2262+ resp .Body .Close ()
2263+ t .Fatalf ("%v" , err )
2264+ }
2265+ }
2266+
22592267func TestOCIRepository_reconcileSource_verifyOCISourceSignature_keyless (t * testing.T ) {
22602268 tests := []struct {
22612269 name string
You can’t perform that action at this time.
0 commit comments