chore(deps): bump @pulumi/random from 4.19.1 to 4.19.2 in /infrastructure/pulumi #62
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: Security | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| security-gate: | |
| name: security-gate | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| env: | |
| CARGO_AUDIT_VERSION: 0.22.1 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup build environment | |
| uses: ./.github/actions/setup-build-environment | |
| - name: Dependency review | |
| if: ${{ github.event_name == 'pull_request' }} | |
| uses: actions/dependency-review-action@v4 | |
| - name: Cache cargo-audit | |
| id: cargo-audit-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo/bin/cargo-audit | |
| key: ${{ runner.os }}-cargo-audit-${{ env.CARGO_AUDIT_VERSION }} | |
| - name: Install cargo-audit | |
| if: steps.cargo-audit-cache.outputs.cache-hit != 'true' | |
| run: cargo install cargo-audit --locked --version "${CARGO_AUDIT_VERSION}" | |
| - name: Run cargo audit | |
| run: cargo audit |