@@ -13,14 +13,14 @@ jobs:
1313 name : Lint
1414 strategy :
1515 matrix :
16- go-version : [1.23 .x, 1.24 .x]
16+ go-version : [1.24 .x, 1.25 .x]
1717 runs-on : ubuntu-latest
1818 steps :
19- - uses : actions/setup-go@v5
19+ - uses : actions/setup-go@v6
2020 with :
2121 go-version : ${{matrix.go-version}}
2222
23- - uses : actions/checkout@v4
23+ - uses : actions/checkout@v5
2424
2525 - name : golangci-lint
2626 uses : golangci/golangci-lint-action@v8
@@ -30,45 +30,14 @@ jobs:
3030 lint-jsonschema :
3131 runs-on : ubuntu-latest
3232 steps :
33- - uses : actions/setup-python@v5
33+ - uses : actions/setup-python@v6
3434 with :
35- python-version : 3.12
35+ python-version : 3.14
3636
37- - uses : actions/checkout@v4
37+ - uses : actions/checkout@v5
3838
3939 - name : install check-jsonschema
4040 run : python -m pip install 'check-jsonschema==0.27.3'
4141
4242 - name : check-jsonschema (metaschema)
43- run : check-jsonschema --check-metaschema website/static/schema.json
44- check_doc :
45- runs-on : ubuntu-latest
46- steps :
47- - uses : actions/checkout@v4
48- - name : Get changed files in the docs folder
49- id : changed-files-specific
50- uses : tj-actions/changed-files@v46
51- with :
52- files : website/versioned_docs/**
53-
54- - uses : actions/github-script@v7
55- if : steps.changed-files-specific.outputs.any_changed == 'true'
56- with :
57- script : |
58- core.setFailed('website/versioned_docs has changed. Instead you need to update the docs in the website/docs folder.')
59- check_schema :
60- runs-on : ubuntu-latest
61- steps :
62- - uses : actions/checkout@v4
63- - name : Get changed files in the docs folder
64- id : changed-files-specific
65- uses : tj-actions/changed-files@v46
66- with :
67- files : |
68- website/static/schema.json
69- website/static/schema-taskrc.json
70- - uses : actions/github-script@v7
71- if : steps.changed-files-specific.outputs.any_changed == 'true'
72- with :
73- script : |
74- core.setFailed('schema.json or schema-taskrc.json has changed. Instead you need to update next-schema.json or next-schema-taskrc.json.')
43+ run : check-jsonschema --check-metaschema website/src/public/schema.json
0 commit comments