Bump nokogiri from 1.19.1 to 1.19.3 in /docs #12
Workflow file for this run
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
| # SPDX-FileCopyrightText: Copyright 2026 The OSPS Baseline Authors | |
| # SPDX-License-Identifier: Apache-2.0 | |
| --- | |
| name: Validate CUE Schemas | |
| on: | |
| pull_request: {} | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-catalog: | |
| name: Validate Catalog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Go | |
| uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 | |
| with: | |
| go-version-file: cmd/go.mod | |
| check-latest: true | |
| cache: true | |
| - name: Setup CUE | |
| uses: cue-lang/setup-cue@a93fa358375740cd8b0078f76355512b9208acb1 # v1.0.1 | |
| with: | |
| version: latest | |
| - name: Generate Gemara output | |
| run: | | |
| go build -C cmd/ -o ../baseline-compiler | |
| ./baseline-compiler gemara -b baseline > baseline.gemara.yaml | |
| - name: Validate catalog against CUE schema | |
| run: cd schema && cue vet -d '#OSPSBaseline' . ../baseline.gemara.yaml |