- Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			784 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			784 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: golangci-lint
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|     paths:
 | |
|       - "**/*.go"
 | |
|       - ".github/workflows/golangci-lint.yml"
 | |
|   pull_request:
 | |
|     types: [opened, synchronize, reopened]
 | |
|     paths:
 | |
|       - "**/*.go"
 | |
|       - ".github/workflows/golangci-lint.yml"
 | |
| permissions:
 | |
|   contents: read
 | |
| 
 | |
| jobs:
 | |
|   lint:
 | |
|     permissions:
 | |
|       contents: read  # for actions/checkout to fetch code
 | |
|       pull-requests: read  # for golangci/golangci-lint-action to fetch pull requests
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout codebase
 | |
|         uses: actions/checkout@v2
 | |
| 
 | |
|       - name: golangci-lint
 | |
|         uses: golangci/golangci-lint-action@v2
 | |
|         with:
 | |
|           version: latest
 | |
|           args: --config=.github/linters/.golangci.yml
 | |
|           only-new-issues: true
 |