Skip to content

Commit 8e9448b

Browse files
committed
fix: upgrade skopeo to 1.4.1
1 parent ac4e1a8 commit 8e9448b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM fedora:32 AS skopeo-build
55

66
RUN dnf install -y golang git make
77
RUN dnf install -y go-md2man gpgme-devel libassuan-devel btrfs-progs-devel device-mapper-devel
8-
RUN git clone --depth 1 -b 'v1.4.0' https://github.com/containers/skopeo $GOPATH/src/github.com/containers/skopeo
8+
RUN git clone --depth 1 -b 'v1.4.1' https://github.com/containers/skopeo $GOPATH/src/github.com/containers/skopeo
99
RUN cd $GOPATH/src/github.com/containers/skopeo \
1010
&& make bin/skopeo DISABLE_CGO=1 \
1111
&& make install

test/system/kind.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,9 @@ test('Kubernetes-Monitor with KinD', async (jestDoneCallback) => {
302302
expect(requestBody).toEqual<transmitterTypes.IDependencyGraphPayload>(
303303
{
304304
agentId,
305-
dependencyGraph: expect.stringContaining('docker-image|docker.io/library/java'),
305+
dependencyGraph: expect.stringContaining(
306+
'docker-image|docker.io/library/java',
307+
),
306308
imageLocator: {
307309
userLocator: expect.any(String),
308310
cluster: expect.any(String),

0 commit comments

Comments
 (0)