-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jin Dong <djdongjin95@gmail.com>
- Loading branch information
Showing
3 changed files
with
42 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directories: | ||
- "/" | ||
- "/examples" | ||
- "/plugins/**/*" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 10 | ||
groups: | ||
golang-x: | ||
patterns: | ||
- "golang.org/x/*" | ||
containerd: | ||
patterns: | ||
- "github.com/containerd/*" | ||
opencontainers: | ||
patterns: | ||
- "github.com/opencontainers/*" | ||
k8s: | ||
patterns: | ||
- "k8s.io/*" | ||
sig-k8s: | ||
patterns: | ||
- "sigs.k8s.io/*" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
module github.com/containerd/nri/examples | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/containerd/cgroups v1.0.3 | ||
github.com/containerd/nri v0.1.0 | ||
github.com/opencontainers/runtime-spec v1.0.3-0.20220825212826-86290f6a00fb | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
) | ||
|
||
require ( | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/godbus/dbus/v5 v5.0.4 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
) | ||
|
||
replace github.com/containerd/nri => ../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters