Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increased wait for ready pause #581

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
fi

- name: Set up Go 1.21.x
uses: actions/setup-go@v2

Check failure on line 43 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/setup-go@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:43:13: the runner of "actions/setup-go@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
go-version: 1.21.x

Expand All @@ -53,7 +53,7 @@
echo '::endgroup::'

- name: Check out code
uses: actions/checkout@v2

Check failure on line 56 in .github/workflows/kind-e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/kind-e2e.yaml:56:13: the runner of "actions/checkout@v2" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

- name: Install KinD
env:
Expand Down Expand Up @@ -129,7 +129,7 @@

# Probably don't need this anymore, but keep until we
# have something that waits for pods to becomes ready.
sleep 60
sleep 120

# For debugging.
kubectl get pods --all-namespaces
Expand Down
Loading