Skip to content

Commit 0c6274f

Browse files
Merge pull request #4835 from Azure/dependabot/github_actions/oxsecurity/megalinter-9.5.0
Bump oxsecurity/megalinter from 9.4.0 to 9.5.0
2 parents 5f4c443 + 8901221 commit 0c6274f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919

2020
- name: yamllint
21-
uses: oxsecurity/megalinter/flavors/ci_light@8fbdead70d1409964ab3d5afa885e18ee85388bb # v9.4.0
21+
uses: oxsecurity/megalinter/flavors/ci_light@0e3ce9b9c8c10effb9b269509cc47ca17cae31c7 # v9.5.0

test/e2e/hive_manager.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package e2e
55

66
import (
77
"context"
8+
"fmt"
89
"time"
910

1011
. "github.com/onsi/ginkgo/v2"
@@ -38,7 +39,8 @@ var _ = Describe("Hive manager creates a namespace", func() {
3839
})
3940

4041
It("Should be created successfully", func() {
41-
const docID = "00000000-0000-0000-0000-000000000000"
42+
// Use a unique ID per test run to avoid conflicts with previous runs
43+
docID := fmt.Sprintf("e2e-test-%d-%d", GinkgoParallelProcess(), time.Now().UnixNano())
4244
var err error
4345
ns, err = clients.HiveClusterManager.CreateNamespace(context.Background(), docID)
4446
Expect(err).NotTo(HaveOccurred())

0 commit comments

Comments
 (0)