multiarch trivy
This commit is contained in:
parent
041cbfff6e
commit
c6af6a69eb
@ -18,7 +18,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup trivy
|
- name: Setup trivy
|
||||||
run: |
|
run: |
|
||||||
wget -O /tmp/trivy.deb https://github.com/aquasecurity/trivy/releases/download/v0.57.1/trivy_0.57.1_Linux-64bit.deb
|
echo "Installing Trivy for arch: $(uname -m)"
|
||||||
|
case $(uname -m) in
|
||||||
|
x86_64)
|
||||||
|
wget -O /tmp/trivy.deb https://github.com/aquasecurity/trivy/releases/download/v0.58.2/trivy_0.58.2_Linux-64bit.deb ;;
|
||||||
|
aarch64)
|
||||||
|
wget -O /tmp/trivy.deb https://github.com/aquasecurity/trivy/releases/download/v0.58.2/trivy_0.58.2_Linux-ARM64.deb ;;
|
||||||
|
*) exit 1 ;;
|
||||||
|
esac
|
||||||
dpkg -i /tmp/trivy.deb
|
dpkg -i /tmp/trivy.deb
|
||||||
|
|
||||||
- name: Run Trivy vulnerability scanner
|
- name: Run Trivy vulnerability scanner
|
||||||
|
Loading…
x
Reference in New Issue
Block a user