Skip to content

Commit ce6cb3f

Browse files
committed
Minor tweak to the OSSFuzz workflow.
1 parent ebebf52 commit ce6cb3f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/fuzz.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,14 @@ jobs:
1515
with:
1616
oss-fuzz-project-name: 'jsonschema'
1717
language: python
18-
# Needed until google/oss-fuzz#4996 is merged
19-
continue-on-error: true
2018
- name: Run Fuzzers
2119
if: steps.build.outcome == 'success'
2220
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
2321
with:
2422
oss-fuzz-project-name: 'jsonschema'
2523
fuzz-seconds: 30
2624
- name: Upload Crash
27-
uses: actions/upload-artifact@v1
25+
uses: actions/upload-artifact@v2
2826
if: failure() && steps.build.outcome == 'success'
2927
with:
3028
name: artifacts

.github/workflows/packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: python -m pip install build
2424
- name: Create packages
2525
run: python -m build .
26-
- uses: actions/upload-artifact@master
26+
- uses: actions/upload-artifact@v2
2727
with:
2828
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
2929
path: dist

0 commit comments

Comments
 (0)