Skip to content

build(deps): patternfly-component-schemas from 1.2.0 to 1.3.0 #75

build(deps): patternfly-component-schemas from 1.2.0 to 1.3.0

build(deps): patternfly-component-schemas from 1.2.0 to 1.3.0 #75

Workflow file for this run

name: Container
on:
pull_request:
paths:
- '.containerignore'
- 'Containerfile'
- 'scripts/container.*'
- 'tests/container/**'
- 'package.json'
- 'package-lock.json'
workflow_dispatch:
jobs:
container-audit:
name: Container Audit
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v7.0.0
with:
node-version: '24'
cache: npm
- name: Install dependencies
run: npm ci
- name: Run container audit
run: npm run test:audit-container
# Advisories are non-blocking for PRs
continue-on-error: ${{ github.event_name == 'pull_request' }}