This change updates all dependencies. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
// Copyright 2024 The go-github AUTHORS. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package github
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// ListAttestations returns a collection of artifact attestations
|
|
// with a given subject digest that are associated with a repository.
|
|
//
|
|
// GitHub API docs: https://docs.github.com/rest/repos/repos#list-attestations
|
|
//
|
|
//meta:operation GET /repos/{owner}/{repo}/attestations/{subject_digest}
|
|
func (s *RepositoriesService) ListAttestations(ctx context.Context, owner, repo, subjectDigest string, opts *ListOptions) (*AttestationsResponse, *Response, error) {
|
|
var u = fmt.Sprintf("repos/%v/%v/attestations/%v", owner, repo, subjectDigest)
|
|
|
|
u, err := addOptions(u, opts)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
req, err := s.client.NewRequest("GET", u, nil)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
var attestations *AttestationsResponse
|
|
resp, err := s.client.Do(ctx, req, &attestations)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return attestations, resp, nil
|
|
}
|