Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update Syft to v0.94.0 #423

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ docker run -d -p 5000:5000 --name registry registry:2

```shell
for distro in alpine centos debian; do
docker build -t localhost:5000/match-coverage/$distro ./tests/fixtures/image-$distro-match-coverage
docker push localhost:5000/match-coverage/$distro:latest
docker build -t "localhost:5000/match-coverage/${distro}:latest" "./tests/fixtures/image-$distro-match-coverage"
docker push "localhost:5000/match-coverage/${distro}:latest"
done
```
2 changes: 1 addition & 1 deletion dist/attachReleaseAssets/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/downloadSyft/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/runSyftAction/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/SyftVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "v0.84.0";
export const VERSION = "v0.94.0";
4 changes: 2 additions & 2 deletions tests/fixtures/image-alpine-match-coverage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM scratch
COPY . .
FROM --platform=linux/amd64 scratch
COPY . .
4 changes: 2 additions & 2 deletions tests/fixtures/image-centos-match-coverage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM scratch
COPY . .
FROM --platform=linux/amd64 scratch
COPY . .
4 changes: 2 additions & 2 deletions tests/fixtures/image-debian-match-coverage/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM scratch
COPY . .
FROM --platform=linux/amd64 scratch
COPY . .
Loading
Loading