Skip to content

Commit

Permalink
Merge pull request #1040 from haircommander/bump-kube-1.26
Browse files Browse the repository at this point in the history
vendor: bump kube to 1.26
  • Loading branch information
k8s-ci-robot committed Dec 13, 2022
2 parents 5c762a0 + baefda3 commit 47f9d27
Show file tree
Hide file tree
Showing 1,000 changed files with 120,438 additions and 81,300 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'

- name: Set env
shell: bash
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'

- name: Set env
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/containerd.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'

- name: Set env
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crio.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'

- name: Setup environment
shell: bash
Expand Down
162 changes: 0 additions & 162 deletions .github/workflows/dockershim.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'

- name: Set env
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'
- name: Set env
shell: bash
run: |
Expand Down
3 changes: 2 additions & 1 deletion cmd/crictl/attach.go
Expand Up @@ -17,6 +17,7 @@ limitations under the License.
package main

import (
"context"
"fmt"
"net/url"

Expand Down Expand Up @@ -82,7 +83,7 @@ func Attach(client internalapi.RuntimeService, opts attachOptions) error {
Stderr: !opts.tty,
}
logrus.Debugf("AttachRequest: %v", request)
r, err := client.Attach(request)
r, err := client.Attach(context.TODO(), request)
logrus.Debugf("AttachResponse: %v", r)
if err != nil {
return err
Expand Down

0 comments on commit 47f9d27

Please sign in to comment.