feat(cross-platform-smoke): install_command input; release 0.13.3 #61
Workflow file for this run
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
| # CodeQL on this repository's own Python and Actions sources. Self-application: | |
| # ci-workflows ships this capability to the estate, so it must consume it too. | |
| # Self-references stay relative; only external consumers pin by full SHA. | |
| name: codeql | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: "0 5 * * 1" | |
| permissions: {} | |
| concurrency: | |
| group: codeql-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| codeql: | |
| permissions: | |
| actions: read # read workflow run metadata for the actions analysis | |
| contents: read | |
| security-events: write # upload CodeQL SARIF to the Security tab | |
| uses: ./.github/workflows/public-codeql.yml | |
| with: | |
| languages: '["python","actions"]' |