forked from Mirror/ollama4j
		
	Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			915 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			915 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: CodeQL
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ main ]
 | 
						|
  pull_request:
 | 
						|
    branches: [ main ]
 | 
						|
  schedule:
 | 
						|
    - cron: '0 3 * * 1'
 | 
						|
 | 
						|
jobs:
 | 
						|
  analyze:
 | 
						|
    name: Analyze
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    permissions:
 | 
						|
      actions: read
 | 
						|
      contents: read
 | 
						|
      security-events: write
 | 
						|
    strategy:
 | 
						|
      fail-fast: false
 | 
						|
      matrix:
 | 
						|
        language: [ 'java', 'javascript' ]
 | 
						|
    steps:
 | 
						|
      - name: Checkout repository
 | 
						|
        uses: actions/checkout@v5
 | 
						|
 | 
						|
      - name: Set up JDK
 | 
						|
        if: matrix.language == 'java'
 | 
						|
        uses: actions/setup-java@v5
 | 
						|
        with:
 | 
						|
          distribution: temurin
 | 
						|
          java-version: '11'
 | 
						|
 | 
						|
      - name: Initialize CodeQL
 | 
						|
        uses: github/codeql-action/init@v3
 | 
						|
        with:
 | 
						|
          languages: ${{ matrix.language }}
 | 
						|
 | 
						|
      - name: Autobuild
 | 
						|
        uses: github/codeql-action/autobuild@v3
 | 
						|
 | 
						|
      - name: Perform CodeQL Analysis
 | 
						|
        uses: github/codeql-action/analyze@v3
 | 
						|
 |