Skip to content

Update codecov/codecov-action action to v5.0.4 #806

Update codecov/codecov-action action to v5.0.4

Update codecov/codecov-action action to v5.0.4 #806

Workflow file for this run

name: 'CodeQL'
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: java-kotlin
build-mode: manual
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- if: matrix.build-mode == 'manual'
env:
GH_PACKAGES_READ_TOKEN: ${{ secrets.PACKAGES_READ_TOKEN }}
shell: bash
run: |
chmod +x gradlew
./gradlew manami-app:compileKotlin
./gradlew manami-gui:compileKotlin
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
env:
GH_PACKAGES_READ_TOKEN: ${{ secrets.PACKAGES_READ_TOKEN }}
with:
category: "/language:${{matrix.language}}"