diff options
| author | Syndamia <kamen@syndamia.com> | 2024-08-13 15:05:43 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-08-13 15:05:43 +0300 |
| commit | beca35bdce4fd9037aeb669fc9b05e4ec4f3c2fd (patch) | |
| tree | d70635c3c2919e55d837a359ba1e5506c4098e16 /.github/workflows | |
| parent | 1cb9b04bf59cfc2cbc666bbb919a5e72b8c9a891 (diff) | |
| download | pico-web-beca35bdce4fd9037aeb669fc9b05e4ec4f3c2fd.tar pico-web-beca35bdce4fd9037aeb669fc9b05e4ec4f3c2fd.tar.gz pico-web-beca35bdce4fd9037aeb669fc9b05e4ec4f3c2fd.zip | |
fix(cd): Removed credentials, removed quotes from value
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/cd-dev.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/cd.yml | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/cd-dev.yml b/.github/workflows/cd-dev.yml index 51a0ef1..938b13a 100644 --- a/.github/workflows/cd-dev.yml +++ b/.github/workflows/cd-dev.yml @@ -36,11 +36,8 @@ jobs: steps: - name: Run Trivy vulnerability scanner uses: aquasecurity/trivy-action@0.20.0 - env: - TRIVY_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} - TRIVY_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} with: - image-ref: 'docker.io/${{ secrets.DOCKERHUB_USERNAME }}/pico-web-dev:latest' + image-ref: docker.io/${{ secrets.DOCKERHUB_USERNAME }}/pico-web-dev:latest format: 'sarif' output: 'trivy-results.sarif' diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 05e2ce0..1f7fb43 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -29,11 +29,8 @@ jobs: steps: - name: Run Trivy vulnerability scanner uses: aquasecurity/trivy-action@0.20.0 - env: - TRIVY_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} - TRIVY_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} with: - image-ref: 'docker.io/${{ secrets.DOCKERHUB_USERNAME }}/pico-web:latest' + image-ref: docker.io/${{ secrets.DOCKERHUB_USERNAME }}/pico-web:latest format: 'sarif' output: 'trivy-results.sarif' |
