chore(deps): bump actions/checkout from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to b80ff79f1755d06ba70441c368a6fe801f5f3a62 #119
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: "PR" | |
"on": | |
## Run on PR filings | |
pull_request: | |
paths: | |
- apps/**/*.* | |
- packages/**/*.* | |
- pnpm-lock.yaml | |
- package.json | |
- .github/workflows/*.yml | |
## Run on PR queue check requests | |
merge_group: {} | |
concurrency: | |
# Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109 | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
name: "Dependency Review" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 | |
with: | |
egress-policy: audit | |
- name: "Checkout Repository" | |
uses: actions/checkout@b80ff79f1755d06ba70441c368a6fe801f5f3a62 # v4.0.0 | |
- name: "Dependency Review" | |
uses: actions/dependency-review-action@9129d7d40b8c12c1ed0f60400d00c92d437adcce # v4.1.3 | |
with: | |
config-file: "./.github/dependency-review-config.yml" | |
test: | |
name: "Tests: ${{ matrix.label }}" | |
uses: ./.github/workflows/module.build.yml | |
strategy: | |
fail-fast: false | |
matrix: | |
runner: [ubuntu-latest] | |
label: ["Ubuntu"] | |
include: | |
# Bazel 7 | |
- runner: ubuntu-latest | |
label: Ubuntu | |
- runner: macos-latest | |
label: macOS | |
- runner: windows-2022 | |
label: Windows | |
secrets: inherit | |
with: | |
runner: ${{ matrix.runner }} | |
label: ${{ matrix.label }} | |
native: false | |
ios: false |