We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff9115a + b435e6c commit b7f3461Copy full SHA for b7f3461
.github/workflows/release-image.yml
@@ -57,10 +57,14 @@ jobs:
57
CYPHER_VERSION=${{ env.CYPHER_VERSION }}
58
load: true
59
60
+ - name: Extract Trivy tag
61
+ run: |
62
+ echo "TRIVY_TAG=$(echo '${{ env.TAGS }}' | cut -d',' -f1)" >> $GITHUB_ENV
63
+
64
- name: Run Trivy vulnerability scanner
65
uses: aquasecurity/trivy-action@22438a435773de8c97dc0958cc0b823c45b064ac
66
with:
- image-ref: ${{ env.TAGS }}
67
+ image-ref: ${{ env.TRIVY_TAG }}
68
format: 'table'
69
exit-code: '1'
70
ignore-unfixed: true
0 commit comments