Conversation
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
| - uses: actions/checkout@v4 | ||
| - uses: EmbarkStudios/cargo-deny-action@v2 | ||
| - uses: actions/checkout@v4 | ||
| - uses: EmbarkStudios/cargo-deny-action@v2 |
Check failure
Code scanning / zizmor
unpinned action reference
| - name: Install Android SDK | ||
| uses: android-actions/setup-android@v3 | ||
| - name: Install Android SDK | ||
| uses: android-actions/setup-android@v3 |
Check failure
Code scanning / zizmor
unpinned action reference
| toolchain: stable | ||
| target: ${{ matrix.target }} | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable |
Check failure
Code scanning / zizmor
unpinned action reference
| target: ${{ matrix.target }} | ||
|
|
||
| - uses: Swatinem/rust-cache@v2 | ||
| - uses: Swatinem/rust-cache@v2 |
Check failure
Code scanning / zizmor
unpinned action reference
| - name: Set up Android Emulator and run tests | ||
| env: | ||
| TARGET: ${{ matrix.target }} | ||
| uses: reactivecircus/android-emulator-runner@v2 |
Check failure
Code scanning / zizmor
unpinned action reference
| actionlint: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - name: Download actionlint | ||
| id: get_actionlint | ||
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | ||
| shell: bash | ||
| - name: Check workflow files | ||
| run: ${{ steps.get_actionlint.outputs.executable }} -color | ||
| shell: bash |
Check warning
Code scanning / zizmor
overly broad permissions
.github/workflows/rust.yml
Outdated
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | ||
| shell: bash | ||
| - name: Check workflow files | ||
| run: ${{ steps.get_actionlint.outputs.executable }} -color |
Check notice
Code scanning / zizmor
code injection via template expansion
Fixes #2180.