Skip to content

chore(deps): update dependency: bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.1.0 to 2.3.21 in /app/android #109

chore(deps): update dependency: bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.1.0 to 2.3.21 in /app/android

chore(deps): update dependency: bump org.jetbrains.kotlin:kotlin-gradle-plugin from 2.1.0 to 2.3.21 in /app/android #109

Workflow file for this run

# Software Name: OUDS Flutter
# SPDX-FileCopyrightText: Copyright (c) Orange SA
# SPDX-License-Identifier: MIT
#
# This software is distributed under the MIT license,
# the text of which is available at https://opensource.org/license/MIT/
# or see the "LICENSE" file for more details.
#
# Software description: Flutter library of reusable graphical components
name: CodeQL - Dart/Flutter SAST Analysis
on:
push:
pull_request:
schedule:
- cron: '0 1 * * 1'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-dart:
name: Analyze Dart & Flutter code
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Setup Flutter environment
uses: ./.github/actions/setup
- name: Cache Pub packages
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: ~/.pub-cache
key: ${{ runner.os }}-pubcache-${{ hashFiles('**/pubspec.lock') }}
restore-keys: |
${{ runner.os }}-pubcache-
- name: Run Dart Static Analysis
run: |
echo "Running Dart analysis for all packages..."
dart analyze --fatal-infos --fatal-warnings
continue-on-error: true
- name: Run Flutter Analyze
run: |
echo "Running Flutter analysis..."
flutter analyze --no-pub
continue-on-error: true
- name: Report Summary
if: always()
run: |
echo "✅ Dart & Flutter analysis complete"
echo "📊 Results available in GitHub Security Dashboard"