Skip to content

chore(deps): bump @pulumi/random from 4.19.1 to 4.19.2 in /infrastructure/pulumi #62

chore(deps): bump @pulumi/random from 4.19.1 to 4.19.2 in /infrastructure/pulumi

chore(deps): bump @pulumi/random from 4.19.1 to 4.19.2 in /infrastructure/pulumi #62

Workflow file for this run

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