chore(deps): bump express and @types/express #79
This file contains hidden or 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: CodeQL | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| noop-act: | |
| # Show a successful no-op when running locally under nektos/act | |
| if: ${{ github.actor == 'nektos/act' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: noop (act) | |
| run: echo "Skipping CodeQL under act; use GitHub-hosted runners for real analysis." | |
| analyze: | |
| # Skip on act by default to avoid false failures and missing services | |
| if: ${{ github.actor != 'nektos/act' }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@528ca598d956c91826bd742262cdfc5d02b77710 | |
| with: | |
| languages: javascript-typescript | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@528ca598d956c91826bd742262cdfc5d02b77710 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@528ca598d956c91826bd742262cdfc5d02b77710 | |
| with: | |
| category: "/language:javascript" |