mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-27 16:09:59 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) e65951cdf5
			
		
	
	
		e65951cdf5
		
			
		
	
	
	
	
		
			
			Bumps the github-actions group with 1 update in the / directory: [github/codeql-action](https://github.com/github/codeql-action).
Updates `github/codeql-action` from 3.29.0 to 3.29.4
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](ce28f5bb42...4e828ff8d4)
---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-version: 3.29.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com>
		
	
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: CI-codeql
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|     - 'main'
 | |
|     - 'release/**'
 | |
|     - 'dev/**' # Allow running Code QL on dev branches without a PR
 | |
|   pull_request:
 | |
|     branches:
 | |
|     - 'main'
 | |
|   schedule:
 | |
|     - cron: '25 23 * * 2'
 | |
| 
 | |
| permissions:
 | |
|   contents: read
 | |
| 
 | |
| jobs:
 | |
|   analyze:
 | |
|     name: Analyze
 | |
|     runs-on: ubuntu-latest
 | |
|     permissions:
 | |
|       actions: read
 | |
|       contents: read
 | |
|       security-events: write
 | |
| 
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         language: [ 'javascript-typescript' ]
 | |
| 
 | |
|     steps:
 | |
|     - name: Checkout repository
 | |
|       uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
 | |
| 
 | |
|     # Initializes the CodeQL tools for scanning.
 | |
|     - name: Initialize CodeQL
 | |
|       uses: github/codeql-action/init@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
 | |
|       with:
 | |
|         languages: ${{ matrix.language }}
 | |
|         config: |
 | |
|           paths: 
 | |
|           - sources/src
 | |
| 
 | |
|     - name: Perform CodeQL Analysis
 | |
|       uses: github/codeql-action/analyze@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
 |