From 0daa37cecb968a31c43c8528f70adc18bf9a5783 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Sep 2026 05:36:13 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [dsanders11/json-schema-validate-action](https://github.com/dsanders11/json-schema-validate-action). Updates `actions/checkout` from 5.1.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/fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `dsanders11/json-schema-validate-action` from 1.4.0 to 2.1.0 - [Release notes](https://github.com/dsanders11/json-schema-validate-action/releases) - [Commits](https://github.com/dsanders11/json-schema-validate-action/compare/79b2d95a446a0d786f7f244ae7764f8370ff3657...f04ef3bca791388d2bd9ff3a50b27d1b2572158e) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dsanders11/json-schema-validate-action dependency-version: 2.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/validate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index eafbd882..fb7bcc8d 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -22,10 +22,10 @@ jobs: validate-json-schema: runs-on: ubuntu-latest steps: - - uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5.1.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Validate JSON schema - uses: dsanders11/json-schema-validate-action@79b2d95a446a0d786f7f244ae7764f8370ff3657 # v1.4.0 + uses: dsanders11/json-schema-validate-action@f04ef3bca791388d2bd9ff3a50b27d1b2572158e # v2.1.0 with: schema: tests/samples.schema.json files: sample-queries/sample-queries.json @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest needs: validate-json-schema steps: - - uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5.1.0 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Install run: npm install