fix: check if Azure file share exists before calling Create to allow read-only permissions for existing shares #4691
This file contains hidden or 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 vulnerability scanner | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.25.8 | |
| id: go | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Build an image from Dockerfile | |
| run: | | |
| export PUBLISH=true | |
| export REGISTRY=test | |
| export IMAGE_VERSION=latest | |
| export DOCKER_CLI_EXPERIMENTAL=enabled | |
| make container | |
| - name: Run Trivy vulnerability scanner | |
| uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0 | |
| env: | |
| TRIVY_DB_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-db:2" | |
| with: | |
| image-ref: 'test/azurefile-csi:latest' | |
| format: 'table' | |
| exit-code: '1' | |
| ignore-unfixed: true | |
| vuln-type: 'os,library' | |
| severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN' | |