Skip to content

[main] Upgrade to latest dependencies #3376

[main] Upgrade to latest dependencies

[main] Upgrade to latest dependencies #3376

Triggered via pull request July 10, 2023 13:25
Status Failure
Total duration 6m 10s
Artifacts

knative-style.yaml

on: pull_request
style  /  changes
2s
style / changes
style  /  ...  /  shell
16s
style / suggester / shell
style  /  ...  /  yaml
0s
style / suggester / yaml
style  /  ...  /  github_actions
0s
style / suggester / github_actions
style  /  ...  /  Do Not Submit
style / Golang / Do Not Submit
style  /  ...  /  Lint
style / Golang / Lint
Matrix: style / Golang / Auto-format and Check
Waiting for pending jobs
Matrix: style / Golang / Boilerplate Check
Waiting for pending jobs
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 10 warnings
style / suggester / shell
Process completed with exit code 1.
style / suggester / shell
reviewdog: Too many results (annotations) in diff. You may miss some annotations due to GitHub limitation for annotation created by logging command. Please check GitHub Actions log console to see all results. Limitation: - 10 warning annotations and 10 error annotations per step - 50 annotations per job (sum of annotations from all the steps) - 50 annotations per run (separate from the job annotations, these annotations aren't created by users) Source: https://github.hscsec.cnmunity/t5/GitHub-Actions/Maximum-number-of-annotations-that-can-be-created-using-GitHub/m-p/39085
style / suggester / shell
Process completed with exit code 1.
style / suggester / shell: vendor/knative.dev/hack/library.sh#L166
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:166:- local upper="$(echo $1 | tr a-z A-Z)" vendor/knative.dev/hack/library.sh:166:+ local upper="$(echo "$1" | tr a-z A-Z)"
style / suggester / shell: vendor/knative.dev/hack/library.sh#L182
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:182:- [[ "$(type -t $1)" == "function" ]] vendor/knative.dev/hack/library.sh:182:+ [[ "$(type -t "$1")" == "function" ]]
style / suggester / shell: vendor/knative.dev/hack/library.sh#L230
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:230:- if ! kubectl ${KUBECTL_ARGS} > /dev/null 2>&1; then vendor/knative.dev/hack/library.sh:230:+ if ! kubectl "${KUBECTL_ARGS}" > /dev/null 2>&1; then
style / suggester / shell: vendor/knative.dev/hack/library.sh#L238
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:238:- kubectl ${KUBECTL_ARGS} vendor/knative.dev/hack/library.sh:238:+ kubectl "${KUBECTL_ARGS}"
style / suggester / shell: vendor/knative.dev/hack/library.sh#L256
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:256:- if kubectl ${KUBECTL_ARGS} > /dev/null 2>&1; then vendor/knative.dev/hack/library.sh:256:+ if kubectl "${KUBECTL_ARGS}" > /dev/null 2>&1; then
style / suggester / shell: vendor/knative.dev/hack/library.sh#L264
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:264:- kubectl ${KUBECTL_ARGS} vendor/knative.dev/hack/library.sh:264:+ kubectl "${KUBECTL_ARGS}"
style / suggester / shell: vendor/knative.dev/hack/library.sh#L279
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:279:- local pods="$(kubectl get pods --no-headers -n $1 | grep -v Terminating)" vendor/knative.dev/hack/library.sh:279:+ local pods="$(kubectl get pods --no-headers -n "$1" | grep -v Terminating)"
style / suggester / shell: vendor/knative.dev/hack/library.sh#L286
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:286:- local status=(`echo -n ${pod} | cut -f2 -d' ' | tr '/' ' '`) vendor/knative.dev/hack/library.sh:286:+ local status=($(echo -n "${pod}" | cut -f2 -d' ' | tr '/' ' '))
style / suggester / shell: vendor/knative.dev/hack/library.sh#L313
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:313:- kubectl -n $1 get pods "${failed_pod}" -oyaml vendor/knative.dev/hack/library.sh:313:+ kubectl -n "$1" get pods "${failed_pod}" -oyaml
style / suggester / shell: vendor/knative.dev/hack/library.sh#L315
[shellcheck] reported by reviewdog 🐶 Raw Output: vendor/knative.dev/hack/library.sh:315:- kubectl -n $1 logs "${failed_pod}" --all-containers vendor/knative.dev/hack/library.sh:315:+ kubectl -n "$1" logs "${failed_pod}" --all-containers