We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66e180 commit a050e9eCopy full SHA for a050e9e
.github/workflows/deploy.yml
@@ -45,6 +45,21 @@ jobs:
45
# uses: github/codeql-action/upload-sarif@v3
46
# with:
47
# sarif_file: ${{ steps.scan.outputs.sarif }}
48
+
49
+ Clair:
50
+ name: Clair
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Checkout source code
54
+ uses: actions/checkout@v4
55
+ - name: Build an image from Dockerfile
56
+ run: docker build -t localbuild/mytodo-app:${{ github.sha }} .
57
+ - name: Save Docker image
58
+ run: docker save -o ${{ github.sha }} localbuild/mytodo-app:${{ github.sha }}
59
+ - name: Run Clair V4
60
+ uses: quay/clair-action@main
61
+ with:
62
+ image-path: ${{ github.sha }}
63
64
Bearer:
65
runs-on: ubuntu-latest
0 commit comments