[docs] Fix indentation for the spec.actualVGNameOnTheNode field #320
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trivy check for sub repos | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Trivy check for sub repos | |
runs-on: [self-hosted, regular] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Check and Install Latest Trivy | |
run: | | |
mkdir -p $HOME/bin | |
LATEST_VERSION=$(curl -sL https://api.github.com/repos/aquasecurity/trivy/releases/latest | jq -r ".tag_name") | |
CLEAN_VERSION=${LATEST_VERSION#v} | |
INSTALL_TRIVY=true | |
if [[ -f "$HOME/bin/trivy" ]]; then | |
INSTALLED_VERSION=$("$HOME/bin/trivy" --version | grep -oE 'Version: [0-9]+\.[0-9]+\.[0-9]+' | grep -oE '[0-9]+\.[0-9]+\.[0-9]+') | |
if [ "$INSTALLED_VERSION" == "$CLEAN_VERSION" ]; then | |
echo "Trivy is already up-to-date (version $INSTALLED_VERSION)." | |
INSTALL_TRIVY=false | |
else | |
echo "Updating Trivy from version $INSTALLED_VERSION to $CLEAN_VERSION." | |
fi | |
else | |
echo "Trivy is not installed. Installing version $CLEAN_VERSION." | |
fi | |
if [ "$INSTALL_TRIVY" = true ]; then | |
wget https://github.com/aquasecurity/trivy/releases/download/$LATEST_VERSION/trivy_${CLEAN_VERSION}_Linux-64bit.tar.gz -O trivy.tar.gz | |
tar zxvf trivy.tar.gz -C $HOME/bin | |
fi | |
echo "$HOME/bin" >> $GITHUB_PATH | |
- name: Prepare sub repo | |
run: | | |
version=v`grep "version :=" images/agent/werf.inc.yaml | awk -F'"' '{ print $2}'` | |
git clone --depth 1 --branch $version ${{ secrets.SOURCE_REPO }}/util-linux/util-linux.git ./util-linux | |
git clone ${{ secrets.SOURCE_REPO }}/lvmteam/lvm2.git ./lvm2 | |
version=`grep "version :=" images/sds-utils-installer/werf.inc.yaml | awk -F'"' '{ print $2}'` | |
cd ./lvm2 | |
git checkout $version | |
cd .. | |
- name: Run Trivy vulnerability scanner in fs mode | |
run: | | |
trivy fs . --quiet --config trivy.yaml |