Skip to content

Commit f2fb1df

Browse files
committed
Update various GHA versions.
1 parent bc61702 commit f2fb1df

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
pre-commit:
1414
runs-on: ubuntu-latest
1515
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
1919

2020
ci:
2121
runs-on: ${{ matrix.os }}
@@ -180,9 +180,9 @@ jobs:
180180
toxenv: docs-style
181181

182182
steps:
183-
- uses: actions/checkout@v2
183+
- uses: actions/checkout@v3
184184
- name: Set up Python ${{ matrix.python-version.name }}
185-
uses: actions/setup-python@v2
185+
uses: actions/setup-python@v3
186186
with:
187187
python-version: ${{ matrix.python-version.name }}
188188
- name: Ensure we have new enough versions to respect python_version

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
coverage:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: Set up Python
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v3
1616
with:
17-
python-version: 3.9
17+
python-version: "3.10"
1818
- name: Ensure we have new enough versions to respect python_version
1919
run: python -m pip install -U pip setuptools
2020
- name: Install tox

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
oss-fuzz-project-name: 'jsonschema'
2424
fuzz-seconds: 30
2525
- name: Upload Crash
26-
uses: actions/upload-artifact@v2
26+
uses: actions/upload-artifact@v3
2727
if: failure() && steps.build.outcome == 'success'
2828
with:
2929
name: artifacts

.github/workflows/packaging.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v3
1818
with:
19-
python-version: 3.9
19+
python-version: "3.10"
2020
- name: Install dependencies
2121
run: python -m pip install build
2222
- name: Create packages
@@ -33,7 +33,7 @@ jobs:
3333
password: ${{ secrets.pypi_password }}
3434
- name: Create Release Notes
3535
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
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
3939
script: |

0 commit comments

Comments
 (0)