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) a5903a9454
			
		
	
	
		a5903a9454
		
			
		
	
	
	
	
		
			
			Bumps the github-actions group with 2 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `github/codeql-action` from 3.28.15 to 3.28.16 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](45775bd823...28deaeda66) Updates `actions/download-artifact` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](95815c38cf...d3f86a106a) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.28.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 4.3.0 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@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
 | |
|         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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
 | |
|         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@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
 | |
|         with:
 | |
|           sarif_file: results.sarif
 |