mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-31 18:10:00 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 70f4302913
			
		
	
	
		70f4302913
		
	
	
	
	
		
			
			Bumps the github-actions group with 3 updates in the / directory: [gradle/actions](https://github.com/gradle/actions), [github/codeql-action](https://github.com/github/codeql-action) and [actions/setup-java](https://github.com/actions/setup-java). Bumps the github-actions group with 1 update in the /.github/actions/init-integ-test directory: [actions/setup-java](https://github.com/actions/setup-java). Updates `gradle/actions` from 4.2.2 to 4.3.0 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](0bdd871935...94baf225fe) Updates `github/codeql-action` from 3.28.6 to 3.28.8 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](17a820bf2e...dd746615b3) Updates `actions/setup-java` from 4.6.0 to 4.7.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](7a6d8a8234...3a4f6e1af5) Updates `actions/setup-java` from 4.6.0 to 4.7.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](7a6d8a8234...3a4f6e1af5) --- updated-dependencies: - dependency-name: gradle/actions 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-java dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-java 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@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
 | |
|         with:
 | |
|           sarif_file: results.sarif
 |