Skip to content

Commit febfd09

Browse files
authored
Fix CI tests 'vars' value (jfrog#276)
1 parent 33f766f commit febfd09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
GRADLE_OPTS: -Dorg.gradle.daemon=false
2323
CI: true
2424
JFROG_CLI_LOG_LEVEL: DEBUG
25-
JFROG_SECURITY_CLI_TESTS_JFROG_PLATFORM_PROJECT_KEY: ${{ var.JFROG_TEST_PROJECT_KEY }}
25+
JFROG_SECURITY_CLI_TESTS_JFROG_PLATFORM_PROJECT_KEY: ${{ vars.JFROG_TEST_PROJECT_KEY }}
2626

2727
jobs:
2828
Pretest:

utils/formats/summary.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func (cp *CuratedPackages) GetApprovedCount() int {
7474
func (cp *CuratedPackages) GetBlockedCount() int {
7575
parsed := datastructures.MakeSet[string]()
7676
for _, blocked := range cp.Blocked {
77-
for packageId, _ := range blocked.Packages {
77+
for packageId := range blocked.Packages {
7878
if parsed.Exists(packageId) {
7979
continue
8080
}

0 commit comments

Comments
 (0)