chore: update latestVersion
for package headlamp (#559)
#1794
This file contains 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: Validate package manifests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- packages/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- packages/** | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Validate Package Manifest Schema | |
uses: cardinalby/schema-validator-action@2166123eb256fa40baef7e22ab1379708425efc7 # 3.1.1 | |
with: | |
file: "packages/**/package.yaml" | |
schema: "https://glasskube.dev/schemas/v1/package-manifest.json" | |
- name: Validate Package Versions Schema | |
uses: cardinalby/schema-validator-action@2166123eb256fa40baef7e22ab1379708425efc7 # 3.1.1 | |
with: | |
file: "packages/**/versions.yaml" | |
schema: "https://glasskube.dev/schemas/v1/versions.json" | |
- name: Validate Package Index Schema | |
uses: cardinalby/schema-validator-action@2166123eb256fa40baef7e22ab1379708425efc7 # 3.1.1 | |
with: | |
file: "packages/index.yaml" | |
schema: "https://glasskube.dev/schemas/v1/index.json" |