Skip to content

Commit

Permalink
Bump helm/kind-action from 1.9.0 to 1.12.0 in /.github/workflows (#51254
Browse files Browse the repository at this point in the history
)

* Bump helm/kind-action from 1.9.0 to 1.12.0 in /.github/workflows

Bumps [helm/kind-action](https://github.com/helm/kind-action) from 1.9.0 to 1.12.0.
- [Release notes](https://github.com/helm/kind-action/releases)
- [Commits](helm/kind-action@99576bf...a1b0e39)

---
updated-dependencies:
- dependency-name: helm/kind-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* test

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tiago Silva <[email protected]>
  • Loading branch information
dependabot[bot] and tigrato authored Jan 22, 2025
1 parent e442174 commit 47f0c07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/kube-integration-tests-non-root.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
continue-on-error: true

- name: Create KinD cluster
uses: helm/kind-action@99576bfa6ddf9a8e612d83b513da5a75875caced # v1.9.0
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
with:
cluster_name: kind
config: fixtures/kind/config.yaml
Expand Down
5 changes: 5 additions & 0 deletions integration/kube_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1245,6 +1245,11 @@ func runKubeDisconnectTest(t *testing.T, suite *KubeSuite, tc disconnectTestCase
require.NoError(t, err)
}()

require.Eventually(t, func() bool {
// wait for the shell prompt
return strings.Contains(term.AllOutput(), "#")
}, 5*time.Second, 10*time.Millisecond)

// lets type something followed by "enter" and then hang the session
require.NoError(t, enterInput(sessionCtx, term, "echo boring platypus\r\n", ".*boring platypus.*"))
time.Sleep(tc.disconnectTimeout)
Expand Down

0 comments on commit 47f0c07

Please sign in to comment.