mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-11-04 11:09:01 +01:00 
			
		
		
		
	* Use the latest tagged release of the checkout action. * Cleanup some of the echo group prints in the workflow files
		
			
				
	
	
		
			25 lines
		
	
	
		
			606 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			606 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: git-secrets Check
 | 
						|
on:
 | 
						|
  push:
 | 
						|
  pull_request:
 | 
						|
  workflow_dispatch:
 | 
						|
jobs:
 | 
						|
  git-secrets:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4.1.1
 | 
						|
        with:
 | 
						|
          submodules: recursive
 | 
						|
      - name: Checkout awslabs/git-secrets
 | 
						|
        uses: actions/checkout@v4.1.1
 | 
						|
        with:
 | 
						|
          repository: awslabs/git-secrets
 | 
						|
          ref: master
 | 
						|
          path: git-secrets
 | 
						|
      - name: Install git-secrets
 | 
						|
        run: cd git-secrets && sudo make install && cd ..
 | 
						|
      - name: Run git-secrets
 | 
						|
        run: |
 | 
						|
          git-secrets --register-aws
 | 
						|
          git-secrets --scan
 |