Skip to content

Commit 050a351

Browse files
[nightly] Update dependencies from syft
1 parent d57b26f commit 050a351

23 files changed

Lines changed: 50 additions & 50 deletions

File tree

manifest.versions.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
"aspnet-composite|9.0|linux-musl|arm|sha": "9f1e39593bd4846574435bb7f492e3b5930ce7c3eb064437635fa207a130ce2283ebea08284141191c7635c67ae4e791dac55e7560dec1f38695056323e83f64",
6969
"aspnet-composite|9.0|linux-musl|arm64|sha": "7f411c68d72a0ff54263c15f3665747dc979b519401b893117bab5baa5599af51cc02d2679bb9a7b8f25888021b899557179a2d0b6f87dbe6a251581770185f7",
7070

71-
"chisel|latest|x64|url": "https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_amd64.tar.gz",
72-
"chisel|latest|arm|url": "https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm.tar.gz",
73-
"chisel|latest|arm64|url": "https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm64.tar.gz",
71+
"chisel|latest|x64|url": "https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_amd64.tar.gz",
72+
"chisel|latest|arm|url": "https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm.tar.gz",
73+
"chisel|latest|arm64|url": "https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm64.tar.gz",
7474
"chisel|10.0|x64|url": "$(chisel|latest|x64|url)",
7575
"chisel|10.0|arm|url": "$(chisel|latest|arm|url)",
7676
"chisel|10.0|arm64|url": "$(chisel|latest|arm64|url)",
@@ -81,9 +81,9 @@
8181
"chisel|8.0|arm|url": "$(chisel|latest|arm|url)",
8282
"chisel|8.0|arm64|url": "$(chisel|latest|arm64|url)",
8383

84-
"chisel|latest|x64|sha384": "f53b6e4e9bf43f234201353487684c7d6e04e4f9a2ee766debbfc92f824b717fbd5d585a9147fb5652e0724473ae2959",
85-
"chisel|latest|arm|sha384": "b05fbb0e5df420909375b62cf2d8922e44ccc8339f1ab0b4866953d834303fe143ef1e0d47506dcd0bd54ed6462a97af",
86-
"chisel|latest|arm64|sha384": "980f53722642429478eba402f720ced634c032445d993e2165e9fd29c6054cf3c15c32b6a570938bb86f8218d3f92d15",
84+
"chisel|latest|x64|sha384": "3409c69cafd7c0a3a8f47bb754de95bf5e5b3edc0ccfc34fdd06b12a6ddcf493a5d889f4bfafbf20b1a0db6fb69d4032",
85+
"chisel|latest|arm|sha384": "99497d7650f988c0afcd60b774645e4111132c3450d04f83a2087ab0fb890675e26a698226263e6de6b756b55cf42410",
86+
"chisel|latest|arm64|sha384": "561d083aac81d44aaec8b3449fb0cc1f6a0e7c910b2c5e3f1f24d66195d772654a481334b26295961a147ee2b38f8229",
8787
"chisel|10.0|x64|sha384": "$(chisel|latest|x64|sha384)",
8888
"chisel|10.0|arm|sha384": "$(chisel|latest|arm|sha384)",
8989
"chisel|10.0|arm64|sha384": "$(chisel|latest|arm64|sha384)",

src/runtime-deps/10.0/noble-chiseled-extra/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM amd64/buildpack-deps:noble-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_amd64.tar.gz \
6-
&& chisel_sha384='f53b6e4e9bf43f234201353487684c7d6e04e4f9a2ee766debbfc92f824b717fbd5d585a9147fb5652e0724473ae2959' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_amd64.tar.gz \
6+
&& chisel_sha384='3409c69cafd7c0a3a8f47bb754de95bf5e5b3edc0ccfc34fdd06b12a6ddcf493a5d889f4bfafbf20b1a0db6fb69d4032' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/10.0/noble-chiseled-extra/arm32v7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM arm32v7/buildpack-deps:noble-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm.tar.gz \
6-
&& chisel_sha384='b05fbb0e5df420909375b62cf2d8922e44ccc8339f1ab0b4866953d834303fe143ef1e0d47506dcd0bd54ed6462a97af' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm.tar.gz \
6+
&& chisel_sha384='99497d7650f988c0afcd60b774645e4111132c3450d04f83a2087ab0fb890675e26a698226263e6de6b756b55cf42410' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/10.0/noble-chiseled-extra/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM arm64v8/buildpack-deps:noble-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm64.tar.gz \
6-
&& chisel_sha384='980f53722642429478eba402f720ced634c032445d993e2165e9fd29c6054cf3c15c32b6a570938bb86f8218d3f92d15' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm64.tar.gz \
6+
&& chisel_sha384='561d083aac81d44aaec8b3449fb0cc1f6a0e7c910b2c5e3f1f24d66195d772654a481334b26295961a147ee2b38f8229' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/10.0/noble-chiseled/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM amd64/buildpack-deps:noble-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_amd64.tar.gz \
6-
&& chisel_sha384='f53b6e4e9bf43f234201353487684c7d6e04e4f9a2ee766debbfc92f824b717fbd5d585a9147fb5652e0724473ae2959' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_amd64.tar.gz \
6+
&& chisel_sha384='3409c69cafd7c0a3a8f47bb754de95bf5e5b3edc0ccfc34fdd06b12a6ddcf493a5d889f4bfafbf20b1a0db6fb69d4032' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/10.0/noble-chiseled/arm32v7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM arm32v7/buildpack-deps:noble-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm.tar.gz \
6-
&& chisel_sha384='b05fbb0e5df420909375b62cf2d8922e44ccc8339f1ab0b4866953d834303fe143ef1e0d47506dcd0bd54ed6462a97af' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm.tar.gz \
6+
&& chisel_sha384='99497d7650f988c0afcd60b774645e4111132c3450d04f83a2087ab0fb890675e26a698226263e6de6b756b55cf42410' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/10.0/noble-chiseled/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM arm64v8/buildpack-deps:noble-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm64.tar.gz \
6-
&& chisel_sha384='980f53722642429478eba402f720ced634c032445d993e2165e9fd29c6054cf3c15c32b6a570938bb86f8218d3f92d15' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm64.tar.gz \
6+
&& chisel_sha384='561d083aac81d44aaec8b3449fb0cc1f6a0e7c910b2c5e3f1f24d66195d772654a481334b26295961a147ee2b38f8229' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/8.0/jammy-chiseled-extra/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM amd64/buildpack-deps:jammy-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_amd64.tar.gz \
6-
&& chisel_sha384='f53b6e4e9bf43f234201353487684c7d6e04e4f9a2ee766debbfc92f824b717fbd5d585a9147fb5652e0724473ae2959' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_amd64.tar.gz \
6+
&& chisel_sha384='3409c69cafd7c0a3a8f47bb754de95bf5e5b3edc0ccfc34fdd06b12a6ddcf493a5d889f4bfafbf20b1a0db6fb69d4032' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/8.0/jammy-chiseled-extra/arm32v7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM arm32v7/buildpack-deps:jammy-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm.tar.gz \
6-
&& chisel_sha384='b05fbb0e5df420909375b62cf2d8922e44ccc8339f1ab0b4866953d834303fe143ef1e0d47506dcd0bd54ed6462a97af' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm.tar.gz \
6+
&& chisel_sha384='99497d7650f988c0afcd60b774645e4111132c3450d04f83a2087ab0fb890675e26a698226263e6de6b756b55cf42410' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

src/runtime-deps/8.0/jammy-chiseled-extra/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM arm64v8/buildpack-deps:jammy-curl AS chisel
22

33
RUN apt-get update && apt-get install -y file
44

5-
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.1.0/chisel_v1.1.0_linux_arm64.tar.gz \
6-
&& chisel_sha384='980f53722642429478eba402f720ced634c032445d993e2165e9fd29c6054cf3c15c32b6a570938bb86f8218d3f92d15' \
5+
RUN curl --fail --show-error --location --output chisel.tar.gz https://github.com/canonical/chisel/releases/download/v1.2.0/chisel_v1.2.0_linux_arm64.tar.gz \
6+
&& chisel_sha384='561d083aac81d44aaec8b3449fb0cc1f6a0e7c910b2c5e3f1f24d66195d772654a481334b26295961a147ee2b38f8229' \
77
&& echo "$chisel_sha384 chisel.tar.gz" | sha384sum -c - \
88
&& tar -xzf chisel.tar.gz -C /usr/bin/ chisel \
99
&& curl --fail --show-error --location --output /usr/bin/chisel-wrapper https://raw.githubusercontent.com/canonical/rocks-toolbox/v1.2.0/chisel-wrapper \

0 commit comments

Comments
 (0)