diff options
author | 2022-03-16 09:27:30 -0700 | |
---|---|---|
committer | 2022-03-16 12:27:30 -0400 | |
commit | 571efd9cb31b370f2006f39cfe6508cb7aaf5da7 (patch) | |
tree | 94b9dfaa12436f1da21f7398dacdf90426be46cc /.github | |
parent | aa7818e1d342ffbed3588f6bdece621b119debec (diff) | |
download | coredns-571efd9cb31b370f2006f39cfe6508cb7aaf5da7.tar.gz coredns-571efd9cb31b370f2006f39cfe6508cb7aaf5da7.tar.zst coredns-571efd9cb31b370f2006f39cfe6508cb7aaf5da7.zip |
Fix yaml lint warning introduced by cifuzz (#5261)
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cifuzz.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 3623f8e3f..a556320f2 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -9,18 +9,18 @@ jobs: steps: - name: Build Fuzzers id: build - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master # cifuzz can't be pinned https://github.com/google/oss-fuzz/issues/6836 + uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master # cifuzz can't be pinned https://github.com/google/oss-fuzz/issues/6836 with: oss-fuzz-project-name: "go-coredns" dry-run: false - name: Run Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master # cifuzz can't be pinned + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master # cifuzz can't be pinned with: oss-fuzz-project-name: "go-coredns" fuzz-seconds: 600 dry-run: false - name: Upload Crash - uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 #v2.3.1 + uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 if: failure() && steps.build.outcome == 'success' with: name: artifacts |