From dd7326a65b9184b672fb7471d8b39f769d1187df Mon Sep 17 00:00:00 2001 From: Jesse Ditson Date: Mon, 3 Aug 2026 09:42:10 -0700 Subject: [PATCH 1/3] Archival TOML configuration file schemas (#6152) Adds JSON schema definitions for [archival](https://github.com/jesseditson/archival) configuration files. Archival uses toml files to define schemas for websites and the [archival editor](https://archival.dev). Full documentation of archival, which includes coverage of these files, available at [archival.dev/docs](https://archival.dev/docs). These schemas are validated in [CI in the archival repo](https://github.com/jesseditson/archival/actions/workflows/rust-ci.yml), so no local tests are provided. LMK if that's expected and I will add! --- src/api/json/catalog.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/api/json/catalog.json b/src/api/json/catalog.json index 4a2d3fe0d24..2b537f60760 100644 --- a/src/api/json/catalog.json +++ b/src/api/json/catalog.json @@ -517,6 +517,30 @@ "fileMatch": ["arc.json", "arc.yml", "arc.yaml"], "url": "https://raw.githubusercontent.com/architect/parser/v2.3.0/arc-schema.json" }, + { + "name": "Archival editor configuration", + "description": "Per-object editor configuration for an archival site", + "fileMatch": ["archival_editor.toml"], + "url": "https://archival.dev/schemas/archival_editor.schema.json" + }, + { + "name": "Archival object definitions", + "description": "Object definitions for an archival site", + "fileMatch": ["archival_objects.toml"], + "url": "https://archival.dev/schemas/objects.schema.json" + }, + { + "name": "Archival site configuration", + "description": "Site configuration for an archival site", + "fileMatch": ["archival.toml"], + "url": "https://archival.dev/schemas/manifest.schema.json" + }, + { + "name": "Archival template definition", + "description": "Metadata describing an archival site template", + "fileMatch": ["archival_template.toml"], + "url": "https://archival.dev/schemas/archival_template.schema.json" + }, { "name": "Argo CD", "description": "Argo CD base resources", From 77b722dfd9aa6d428f732d7e120cd89f8781a633 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 09:42:39 -0700 Subject: [PATCH 2/3] Bump the github-actions group with 5 updates (#6153) Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `7.0.0` | `7.0.1` | | [actions/setup-node](https://github.com/actions/setup-node) | `6.4.0` | `7.0.0` | | [actions/labeler](https://github.com/actions/labeler) | `6.1.0` | `7.0.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.2.0` | `6.3.0` | | [actions/stale](https://github.com/actions/stale) | `10.3.0` | `10.4.0` | Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `actions/setup-node` from 6.4.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e...820762786026740c76f36085b0efc47a31fe5020) Updates `actions/labeler` from 6.1.0 to 7.0.0 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/f27b608878404679385c85cfa523b85ccb86e213...bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/a309ff8b426b58ec0e2a45f0f869d46889d02405...ece7cb06caefa5fff74198d8649806c4678c61a1) Updates `actions/stale` from 10.3.0 to 10.4.0 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899...1e223db275d687790206a7acac4d1a11bd6fe629) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/labeler dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/stale dependency-version: 10.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/auto-update.yml | 4 ++-- .github/workflows/codeowners-merge.yml | 2 +- .github/workflows/github-pages.yml | 4 ++-- .github/workflows/label-prs.yml | 2 +- .github/workflows/pre-commit-checks.yml | 4 ++-- .github/workflows/stale-prs.yml | 2 +- .github/workflows/validate.yml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 20c12fa5c91..8fe06d4ef4d 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -26,10 +26,10 @@ jobs: contents: 'write' pull-requests: 'write' steps: - - uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0 + - uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1 with: persist-credentials: false - - uses: 'actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e' # v6.4.0 + - uses: 'actions/setup-node@820762786026740c76f36085b0efc47a31fe5020' # v7.0.0 with: node-version: '20' cache: 'npm' diff --git a/.github/workflows/codeowners-merge.yml b/.github/workflows/codeowners-merge.yml index e8daad1a619..76ea18d19bb 100644 --- a/.github/workflows/codeowners-merge.yml +++ b/.github/workflows/codeowners-merge.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest permissions: 'write-all' steps: - - uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0 + - uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1 - name: 'Run Codeowners check' uses: 'OSS-Docs-Tools/code-owner-self-merge@7e8e6e5b31e090570eed0c372e57575cbf0ce962' env: diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 41d1aa1bec9..8e033fa3e81 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -25,10 +25,10 @@ jobs: runs-on: 'ubuntu-latest' if: ${{ github.repository_owner == 'SchemaStore' }} steps: - - uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0 + - uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1 with: persist-credentials: false - - uses: 'actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e' # v6.4.0 + - uses: 'actions/setup-node@820762786026740c76f36085b0efc47a31fe5020' # v7.0.0 with: node-version: '22' cache: 'npm' diff --git a/.github/workflows/label-prs.yml b/.github/workflows/label-prs.yml index 22af6bb6b02..c20f7db5cda 100644 --- a/.github/workflows/label-prs.yml +++ b/.github/workflows/label-prs.yml @@ -7,7 +7,7 @@ jobs: if: github.repository == 'SchemaStore/schemastore' runs-on: ubuntu-latest steps: - - uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0 + - uses: actions/labeler@bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13 # v7.0.0 with: repo-token: '${{ secrets.GITHUB_TOKEN }}' sync-labels: true diff --git a/.github/workflows/pre-commit-checks.yml b/.github/workflows/pre-commit-checks.yml index b51fc6ac9db..41b5a6946e2 100644 --- a/.github/workflows/pre-commit-checks.yml +++ b/.github/workflows/pre-commit-checks.yml @@ -8,7 +8,7 @@ jobs: name: Run pre-commit checks steps: - name: Checkout the repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false @@ -16,7 +16,7 @@ jobs: # enable auto-fixes for formatting violations. Still we still want to run # our own GitHub action, just in case the external service becomes # unavailable. - - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 + - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0 with: python-version: '3.11' - name: Install pre-commit diff --git a/.github/workflows/stale-prs.yml b/.github/workflows/stale-prs.yml index 30cdcb810bb..6990e23d62a 100644 --- a/.github/workflows/stale-prs.yml +++ b/.github/workflows/stale-prs.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest if: github.repository_owner == 'SchemaStore' steps: - - uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0 + - uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0 with: stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Comment or this will be closed in 7 days.' close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.' diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 257cc8858ed..c42030d03f3 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -8,10 +8,10 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 + - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: '20' cache: 'npm' From a1158990fd6fcc49a476790c00fb9a866767a380 Mon Sep 17 00:00:00 2001 From: linnea-bakshi Date: Mon, 3 Aug 2026 16:49:49 +0000 Subject: [PATCH 3/3] Add gha-doctor config schema (self-hosted) (#6154) --- src/api/json/catalog.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/api/json/catalog.json b/src/api/json/catalog.json index 2b537f60760..b3aaea3ead2 100644 --- a/src/api/json/catalog.json +++ b/src/api/json/catalog.json @@ -3734,6 +3734,17 @@ "fileMatch": [".gh-dash.yml", ".gh-dash.yaml", "**/gh-dash/config.yml"], "url": "https://gh-dash.dev/schema.json" }, + { + "name": "gha-doctor", + "description": "Configuration for gha-doctor, the GitHub Actions health checker (speed, cost, and reliability of your workflows)", + "fileMatch": [ + ".gha-doctor.yml", + ".gha-doctor.yaml", + "**/.github/gha-doctor.yml", + "**/.github/gha-doctor.yaml" + ], + "url": "https://linnea-bakshi.github.io/gha-doctor/schema/gha-doctor-config.schema.json" + }, { "name": "GitHub Action", "description": "YAML GitHub Actions",