Skip to content

Commit c9b1bf2

Browse files
committed
Update workflow files to use specific version of sourcemeta/jsonschema for consistency
1 parent 0aa4f9d commit c9b1bf2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Run conformance tests (normative)
21-
uses: docker://sourcemeta/jsonschema:latest
21+
uses: sourcemeta/jsonschema@v14.4.0
2222
with:
2323
args: test tests/normative --json > ctrf-normative.json
2424

2525
- name: Run informative tests
26-
uses: docker://sourcemeta/jsonschema:latest
26+
uses: sourcemeta/jsonschema@v14.4.0
2727
continue-on-error: true
2828
with:
2929
args: test tests/informative --json > ctrf-informative.json
3030

3131
- name: Validate example documents
32-
uses: docker://sourcemeta/jsonschema:latest
32+
uses: sourcemeta/jsonschema@v14.4.0
3333
with:
3434
args: validate schema/ctrf.schema.json examples/*.json
3535

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
branches: ['**']
6-
6+
77
pull_request:
88
branches: ['**']
99

@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Run conformance tests (normative)
20-
uses: docker://sourcemeta/jsonschema:latest
20+
uses: sourcemeta/jsonschema@v14.4.0
2121
with:
2222
args: test tests/normative --json > ctrf-normative.json
2323

@@ -28,7 +28,7 @@ jobs:
2828
args: test tests/informative --json > ctrf-informative.json
2929

3030
- name: Validate example documents
31-
uses: docker://sourcemeta/jsonschema:latest
31+
uses: sourcemeta/jsonschema@v14.4.0
3232
with:
3333
args: validate schema/ctrf.schema.json examples/*.json
3434

0 commit comments

Comments
 (0)