Skip to content

Commit a705ae6

Browse files
authored
Merge pull request #53 from AkihiroSuda/dev
Update dependencies
2 parents 94a33a1 + a48f65b commit a705ae6

File tree

5 files changed

+87
-72
lines changed

5 files changed

+87
-72
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
timeout-minutes: 20
1313
steps:
14-
- uses: actions/setup-go@v3
14+
- uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.19.x
16+
go-version: 1.20.x
1717
- uses: actions/checkout@v3
1818
with:
1919
path: src/github.com/containerd/fuse-overlayfs-snapshotter
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
fuse-overlayfs: [v1.0.0, v1.9, main]
31+
fuse-overlayfs: [v1.0.0, v1.11, main]
3232
env:
3333
FUSEOVERLAYFS_COMMIT: "${{ matrix.fuse-overlayfs }}"
3434
steps:
@@ -39,8 +39,8 @@ jobs:
3939
runs-on: ubuntu-22.04
4040
timeout-minutes: 30
4141
steps:
42-
- uses: actions/setup-go@v3
42+
- uses: actions/setup-go@v4
4343
with:
44-
go-version: 1.19.x
44+
go-version: 1.20.x
4545
- uses: actions/checkout@v3
4646
- run: make artifacts

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
timeout-minutes: 20
1313
steps:
14-
- uses: actions/setup-go@v3
14+
- uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.19.x
16+
go-version: 1.20.x
1717
- uses: actions/checkout@v3
1818
with:
1919
path: go/src/github.com/containerd/fuse-overlayfs-snapshotter

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
# limitations under the License.
1414

1515
ARG FUSEOVERLAYFS_COMMIT=main
16-
ARG ROOTLESSKIT_COMMIT=v1.0.1
16+
ARG ROOTLESSKIT_COMMIT=v1.1.0
1717

18-
ARG GO_VERSION=1.19
18+
ARG GO_VERSION=1.20
1919
ARG DEBIAN_VERSION=11
20-
ARG ALPINE_VERSION=3.16
20+
ARG ALPINE_VERSION=3.18
2121

2222
FROM golang:${GO_VERSION}-alpine AS containerd-fuse-overlayfs-test
2323
COPY . /go/src/github.com/containerd/fuse-overlayfs-snapshotter

go.mod

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,42 @@ module github.com/containerd/fuse-overlayfs-snapshotter
22

33
go 1.19
44

5+
// The test suite from containerd v1.7.x is not compatible with fuse-overlayfs:
6+
// https://github.com/containerd/fuse-overlayfs-snapshotter/pull/53#issuecomment-1543442048
7+
// Expected to be fixed in v1.7.2 (https://github.com/containerd/containerd/pull/8507)
8+
59
require (
6-
github.com/containerd/containerd v1.6.18
10+
github.com/containerd/containerd v1.6.21
711
github.com/containerd/continuity v0.3.0
812
github.com/coreos/go-systemd/v22 v22.5.0
913
github.com/sirupsen/logrus v1.9.0
10-
google.golang.org/grpc v1.50.1
14+
google.golang.org/grpc v1.55.0
1115
)
1216

1317
require (
14-
github.com/Microsoft/go-winio v0.5.2 // indirect
15-
github.com/Microsoft/hcsshim v0.9.6 // indirect
16-
github.com/containerd/cgroups v1.0.4 // indirect
17-
github.com/containerd/ttrpc v1.1.0 // indirect
18+
github.com/Microsoft/go-winio v0.6.1 // indirect
19+
github.com/Microsoft/hcsshim v0.9.9 // indirect
20+
github.com/containerd/cgroups v1.1.0 // indirect
21+
github.com/containerd/ttrpc v1.2.2 // indirect
1822
github.com/containerd/typeurl v1.0.2 // indirect
1923
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
2024
github.com/gogo/protobuf v1.3.2 // indirect
2125
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
22-
github.com/golang/protobuf v1.5.2 // indirect
23-
github.com/google/go-cmp v0.5.6 // indirect
24-
github.com/moby/sys/mountinfo v0.5.0 // indirect
26+
github.com/golang/protobuf v1.5.3 // indirect
27+
github.com/google/go-cmp v0.5.9 // indirect
28+
github.com/moby/sys/mountinfo v0.6.2 // indirect
2529
github.com/opencontainers/go-digest v1.0.0 // indirect
26-
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
30+
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
2731
github.com/pkg/errors v0.9.1 // indirect
28-
go.etcd.io/bbolt v1.3.6 // indirect
29-
go.opencensus.io v0.23.0 // indirect
30-
golang.org/x/net v0.7.0 // indirect
31-
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
32-
golang.org/x/sys v0.5.0 // indirect
33-
golang.org/x/text v0.7.0 // indirect
34-
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect
35-
google.golang.org/protobuf v1.28.0 // indirect
36-
gotest.tools/v3 v3.0.3 // indirect
32+
go.etcd.io/bbolt v1.3.7 // indirect
33+
go.opencensus.io v0.24.0 // indirect
34+
golang.org/x/mod v0.10.0 // indirect
35+
golang.org/x/net v0.10.0 // indirect
36+
golang.org/x/sync v0.2.0 // indirect
37+
golang.org/x/sys v0.8.0 // indirect
38+
golang.org/x/text v0.9.0 // indirect
39+
golang.org/x/tools v0.9.1 // indirect
40+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
41+
google.golang.org/protobuf v1.30.0 // indirect
42+
gotest.tools/v3 v3.4.0 // indirect
3743
)

0 commit comments

Comments
 (0)