8000 GitHub - nirmata/action-install-nctl-scan: GitHub action for nctl scan
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

nirmata/action-install-nctl-scan

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 

Repository files navigation

action-install-nctl-scan GitHub Action

nctl is a CLI by Nirmata that can be used standalone to scan config files (Kubernetes manifests, IaC files, Dockerfile, JSON).

To learn more about nctl, refer to the official documentation.

Usage

This action currently supports GitHub-provided Linux runner.

Add the following entry to your Github workflow YAML file:

jobs:
  example:
    runs-on: ubuntu-latest

    permissions: {}

    name: Install nctl
    steps:
      - name: Install nctl
        uses: nirmata/action-install-nctl-scan@v0.0.2 # pin to the preferred release

      - name: Check nctl version
        run: nctl version
0