Difference between revisions of "Snyk"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
{{Draft}}
 
{{Draft}}
[[wikipedia:Snyk]] 2015 London  
+
[[wikipedia:Snyk]] (2015 London) provides both an open-source and commercial vulnerability scanning service for container images.
 
* https://snyk.io/
 
* https://snyk.io/
  
Line 6: Line 6:
  
 
[[AWS Inspector]]: "[[score]]Source": "SNYK"
 
[[AWS Inspector]]: "[[score]]Source": "SNYK"
 +
 +
== Example ==
 +
name: Snyk Container Scan
 +
on: [push]
 +
jobs:
 +
  snyk_scan:
 +
    runs-on: ubuntu-latest
 +
    steps:
 +
      - name: Checkout code
 +
        uses: actions/checkout@v2
 +
      - name: Set up Snyk
 +
        uses: snyk/actions/setup@v2
 +
      - name: Run Snyk scan
 +
        run: snyk container test --all-projects
 +
        env:
 +
          SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
 +
  
 
== Related ==
 
== Related ==

Revision as of 10:00, 8 November 2024

This article is a Draft. Help us to complete it.

wikipedia:Snyk (2015 London) provides both an open-source and commercial vulnerability scanning service for container images.

AWS Inspector: "scoreSource": "SNYK"

Example

name: Snyk Container Scan
on: [push]
jobs:
  snyk_scan:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Set up Snyk
        uses: snyk/actions/setup@v2
      - name: Run Snyk scan
        run: snyk container test --all-projects
        env:
          SNYK_TOKEN: $Template:Secrets.SNYK TOKEN


Related

See also

Advertising: