forked from ossf/scorecard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌱 maintainer annotations: improve annotation file validation (ossf#4162)
* validate check names against full list Signed-off-by: Raghav Kaul <[email protected]> * tests: close file Signed-off-by: Raghav Kaul <[email protected]> * update Signed-off-by: Raghav Kaul <[email protected]> * make private Signed-off-by: Raghav Kaul <[email protected]> * Restructure imports Signed-off-by: Raghav Kaul <[email protected]> * update Signed-off-by: Raghav Kaul <[email protected]> --------- Signed-off-by: Raghav Kaul <[email protected]>
- Loading branch information
1 parent
9f9afa0
commit 28337f1
Showing
51 changed files
with
182 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Copyright 2024 OpenSSF Scorecard Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package checknames | ||
|
||
type CheckName = string | ||
|
||
// Redefining check names here to avoid circular imports. | ||
const ( | ||
BinaryArtifacts CheckName = "Binary-Artifacts" | ||
BranchProtection CheckName = "Branch-Protection" | ||
CIIBestPractices CheckName = "CII-Best-Practices" | ||
CITests CheckName = "CI-Tests" | ||
CodeReview CheckName = "Code-Review" | ||
Contributors CheckName = "Contributors" | ||
DangerousWorkflow CheckName = "Dangerous-Workflow" | ||
DependencyUpdateTool CheckName = "Dependency-Update-Tool" | ||
Fuzzing CheckName = "Fuzzing" | ||
License CheckName = "License" | ||
Maintained CheckName = "Maintained" | ||
Packaging CheckName = "Packaging" | ||
PinnedDependencies CheckName = "Pinned-Dependencies" | ||
SAST CheckName = "SAST" | ||
SBOM CheckName = "SBOM" | ||
SecurityPolicy CheckName = "Security-Policy" | ||
SignedReleases CheckName = "Signed-Releases" | ||
TokenPermissions CheckName = "Token-Permissions" | ||
Vulnerabilities CheckName = "Vulnerabilities" | ||
Webhooks CheckName = "Webhooks" | ||
) | ||
|
||
var AllValidChecks []string = []string{ | ||
BinaryArtifacts, | ||
BranchProtection, | ||
CIIBestPractices, | ||
CITests, | ||
CodeReview, | ||
Contributors, | ||
DangerousWorkflow, | ||
DependencyUpdateTool, | ||
Fuzzing, | ||
License, | ||
Maintained, | ||
Packaging, | ||
PinnedDependencies, | ||
SAST, | ||
SBOM, | ||
SecurityPolicy, | ||
SignedReleases, | ||
TokenPermissions, | ||
Vulnerabilities, | ||
Webhooks, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.