Skip to content

Commit

Permalink
Fix CI tests 'vars' value (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas authored Jan 5, 2025
1 parent 33f766f commit febfd09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
GRADLE_OPTS: -Dorg.gradle.daemon=false
CI: true
JFROG_CLI_LOG_LEVEL: DEBUG
JFROG_SECURITY_CLI_TESTS_JFROG_PLATFORM_PROJECT_KEY: ${{ var.JFROG_TEST_PROJECT_KEY }}
JFROG_SECURITY_CLI_TESTS_JFROG_PLATFORM_PROJECT_KEY: ${{ vars.JFROG_TEST_PROJECT_KEY }}

jobs:
Pretest:
Expand Down
2 changes: 1 addition & 1 deletion utils/formats/summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (cp *CuratedPackages) GetApprovedCount() int {
func (cp *CuratedPackages) GetBlockedCount() int {
parsed := datastructures.MakeSet[string]()
for _, blocked := range cp.Blocked {
for packageId, _ := range blocked.Packages {
for packageId := range blocked.Packages {
if parsed.Exists(packageId) {
continue
}
Expand Down

0 comments on commit febfd09

Please sign in to comment.