Skip to content

Upgrade outdated packages; Bump React to v18 #797

Upgrade outdated packages; Bump React to v18

Upgrade outdated packages; Bump React to v18 #797

Workflow file for this run

name: CodeQL
# Cancel previous workflow run groups that have not completed.
concurrency:
# Group workflow runs by workflow name, along with the head branch ref of the pull request
# or otherwise the branch or tag ref.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
on:
push:
# Only run if JS or Python files changed.
paths:
- '**.js'
- '**.py'
branches:
- develop
# Include all release branches.
- '[0-9]+.[0-9]+'
pull_request:
# Only run if JS or Python files changed.
paths:
- '**.js'
- '**.py'
branches:
- develop
# Include all release branches.
- '[0-9]+.[0-9]+'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: javascript, python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2