Skip to content

chore(deps): bump actions/checkout from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to a5ac7e51b41094c92402da3b24376905380afc29 #117

chore(deps): bump actions/checkout from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to a5ac7e51b41094c92402da3b24376905380afc29

chore(deps): bump actions/checkout from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to a5ac7e51b41094c92402da3b24376905380afc29 #117

Workflow file for this run

---
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@a5ac7e51b41094c92402da3b24376905380afc29 # 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