Skip to content

Bump the github-actions group across 1 directory with 3 updates #5017

Bump the github-actions group across 1 directory with 3 updates

Bump the github-actions group across 1 directory with 3 updates #5017

Workflow file for this run

name: Build
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
with:
version: 11.1.1
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22.14
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build Inertia
run: pnpm build:all
- name: Audit dependencies
if: github.event_name == 'push'
run: pnpm audit --audit-level=high