build(deps): bump github/codeql-action from 3.26.5 to 3.26.6 in the github-actions group #325
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: static_analysis | |
# Runs the workflow on the below events: | |
# 1. on pull request raised to trunk branch. | |
# 2. on push event to trunk branch. | |
on: | |
push: | |
branches: | |
- trunk | |
pull_request: | |
branches: | |
- trunk | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
package: | |
- at_backupkey_flutter | |
- at_chat_flutter | |
- at_common_flutter | |
- at_contacts_flutter | |
- at_contacts_group_flutter | |
- at_events_flutter | |
- at_follows_flutter | |
- at_invitation_flutter | |
- at_location_flutter | |
- at_login_flutter | |
- at_notify_flutter | |
- at_onboarding_flutter | |
- at_sync_ui_flutter | |
- at_theme_flutter | |
flutter-channel: | |
- stable | |
- beta | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # v2.16.0 | |
with: | |
channel: "${{ matrix.flutter-channel}}" | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: 'stable' | |
cache-dependency-path: tools/osv-scanner/go.sum | |
- name: Install dependencies and analyze in ${{ matrix.package }} | |
working-directory: packages/${{ matrix.package }} | |
run: | | |
touch example/.env | |
flutter pub get | |
if [ "${{ matrix.flutter-channel}}" = "beta" ]; then | |
flutter analyze | |
else | |
flutter analyze --no-fatal-infos | |
fi | |
# Runs osv-scanner to find any vulnerable Dart dependencies | |
# It needs to look at pubspec.lock files, which is why it's | |
# placed here, as the `dart pub get` above will create them | |
- name: Run osv-scanner | |
working-directory: packages/${{ matrix.package }} | |
run: | | |
go install github.com/google/osv-scanner/cmd/osv-scanner@6316373e47d7e3e4b4fd3630c4bbc10987738de6 # v1.4.3 | |
osv-scanner --lockfile=./pubspec.lock |