File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 13
13
pre-commit :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
17
- - uses : actions/setup-python@v2
18
- -
uses :
pre-commit/[email protected] .0
16
+ - uses : actions/checkout@v3
17
+ - uses : actions/setup-python@v3
18
+ -
uses :
pre-commit/[email protected] .3
19
19
20
20
ci :
21
21
runs-on : ${{ matrix.os }}
@@ -180,9 +180,9 @@ jobs:
180
180
toxenv : docs-style
181
181
182
182
steps :
183
- - uses : actions/checkout@v2
183
+ - uses : actions/checkout@v3
184
184
- name : Set up Python ${{ matrix.python-version.name }}
185
- uses : actions/setup-python@v2
185
+ uses : actions/setup-python@v3
186
186
with :
187
187
python-version : ${{ matrix.python-version.name }}
188
188
- name : Ensure we have new enough versions to respect python_version
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
10
10
coverage :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
- name : Set up Python
15
- uses : actions/setup-python@v2
15
+ uses : actions/setup-python@v3
16
16
with :
17
- python-version : 3.9
17
+ python-version : " 3.10 "
18
18
- name : Ensure we have new enough versions to respect python_version
19
19
run : python -m pip install -U pip setuptools
20
20
- name : Install tox
Original file line number Diff line number Diff line change 23
23
oss-fuzz-project-name : ' jsonschema'
24
24
fuzz-seconds : 30
25
25
- name : Upload Crash
26
- uses : actions/upload-artifact@v2
26
+ uses : actions/upload-artifact@v3
27
27
if : failure() && steps.build.outcome == 'success'
28
28
with :
29
29
name : artifacts
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
with :
15
15
fetch-depth : 0
16
16
- name : Set up Python ${{ matrix.python-version }}
17
- uses : actions/setup-python@v2
17
+ uses : actions/setup-python@v3
18
18
with :
19
- python-version : 3.9
19
+ python-version : " 3.10 "
20
20
- name : Install dependencies
21
21
run : python -m pip install build
22
22
- name : Create packages
33
33
password : ${{ secrets.pypi_password }}
34
34
- name : Create Release Notes
35
35
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
36
- uses : actions/github-script@v4.0.2
36
+ uses : actions/github-script@v6
37
37
with :
38
38
github-token : ${{ secrets.GITHUB_TOKEN }}
39
39
script : |
You can’t perform that action at this time.
0 commit comments