Update sast-gitleaks.yml #2
This file contains 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
# Action to Lint open repositories for common issues | |
# Uses https://github.com/todogroup/repolinter | |
# Needs master/repolint.json | |
name: Repository Linter | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
launch-repolint: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} # Only 1 instance at time | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # @v4.2.2 | |
- name: Install NodeJs # Install Software NodeJs | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # @v4.1.0 | |
with: | |
node-version: 16 | |
- name: Install repo-linter | |
run: | | |
npm install -g repolinter | |
- name: Run Repo Linter | |
run: | | |
repolinter --rulesetFile cfg/repolint.json lint . |