mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 7560c304a6
			
		
	
	
		7560c304a6
		
	
	
	
	
		
			
			Bumps the github-actions group with 2 updates in the / directory: [actions/setup-node](https://github.com/actions/setup-node) and [github/codeql-action](https://github.com/github/codeql-action). Bumps the github-actions group with 1 update in the /.github/actions/build-dist directory: [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/setup-node` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](39370e3970...1d0ff469b7) Updates `github/codeql-action` from 3.28.1 to 3.28.6 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](b6a472f63d...17a820bf2e) Updates `actions/setup-node` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](39370e3970...1d0ff469b7) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: CI-ossf-scorecard
 | |
| on:
 | |
|   schedule:
 | |
|     - cron: '0 5 * * 1'
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
| 
 | |
| permissions:
 | |
|   contents: read
 | |
| 
 | |
| jobs:
 | |
|   analysis:
 | |
|     name: Scorecard analysis
 | |
|     runs-on: ubuntu-latest
 | |
|     permissions:
 | |
|       # Needed to upload the results to code-scanning dashboard.
 | |
|       security-events: write
 | |
|       # Needed to publish results and get a badge (see publish_results below).
 | |
|       id-token: write
 | |
| 
 | |
|     steps:
 | |
|       - name: 'Checkout code'
 | |
|         uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
 | |
|         with:
 | |
|           persist-credentials: false
 | |
|           show-progress: false
 | |
| 
 | |
|       - name: 'Run analysis'
 | |
|         uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
 | |
|         with:
 | |
|           results_file: results.sarif
 | |
|           results_format: sarif
 | |
| 
 | |
|           # Public repositories:
 | |
|           #   - Publish results to OpenSSF REST API for easy access by consumers
 | |
|           #   - Allows the repository to include the Scorecard badge.
 | |
|           #   - See https://github.com/ossf/scorecard-action#publishing-results.
 | |
|           # For private repositories:
 | |
|           #   - `publish_results` will always be set to `false`, regardless
 | |
|           #     of the value entered here.
 | |
|           publish_results: true
 | |
| 
 | |
|       # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
 | |
|       # format to the repository Actions tab.
 | |
|       - name: 'Upload artifact'
 | |
|         uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
 | |
|         with:
 | |
|           name: SARIF file
 | |
|           path: results.sarif
 | |
|           retention-days: 5
 | |
| 
 | |
|       # Upload the results to GitHub's code scanning dashboard.
 | |
|       - name: 'Upload to code-scanning'
 | |
|         uses: github/codeql-action/upload-sarif@17a820bf2e43b47be2c72b39cc905417bc1ab6d0 # v3.28.6
 | |
|         with:
 | |
|           sarif_file: results.sarif
 |