cifuzz: reindent yaml file

Fixex two yamllint indentation warning, the truthy is false positive.

    util-linux $ yamllint ./.github/workflows/cifuzz.yml
      6:1       warning  truthy value should be one of [false, true]  (truthy)
      14:2      error    wrong indentation: expected 2 but found 1  (indentation)
      22:4      error    wrong indentation: expected 5 but found 3  (indentation)

Reference: https://github.com/adrienverge/yamllint
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2020-09-01 20:23:36 +01:00
parent 3ea54b843c
commit a371c3f71e
No known key found for this signature in database
GPG Key ID: 0D46FEF7E61DBB46
1 changed files with 29 additions and 29 deletions

View File

@ -11,32 +11,32 @@ on:
paths: paths:
- '**' - '**'
jobs: jobs:
Fuzzing: Fuzzing:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.repository == 'karelzak/util-linux' if: github.repository == 'karelzak/util-linux'
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
sanitizer: [address, undefined, memory] sanitizer: [address, undefined, memory]
steps: steps:
- name: Build Fuzzers (${{ matrix.sanitizer }}) - name: Build Fuzzers (${{ matrix.sanitizer }})
id: build id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with: with:
oss-fuzz-project-name: 'util-linux' oss-fuzz-project-name: 'util-linux'
dry-run: false dry-run: false
allowed-broken-targets-percentage: 0 allowed-broken-targets-percentage: 0
sanitizer: ${{ matrix.sanitizer }} sanitizer: ${{ matrix.sanitizer }}
- name: Run Fuzzers (${{ matrix.sanitizer }}) - name: Run Fuzzers (${{ matrix.sanitizer }})
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with: with:
oss-fuzz-project-name: 'util-linux' oss-fuzz-project-name: 'util-linux'
fuzz-seconds: 180 fuzz-seconds: 180
dry-run: false dry-run: false
sanitizer: ${{ matrix.sanitizer }} sanitizer: ${{ matrix.sanitizer }}
- name: Upload Crash - name: Upload Crash
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v1
if: failure() && steps.build.outcome == 'success' if: failure() && steps.build.outcome == 'success'
with: with:
name: ${{ matrix.sanitizer }}-artifacts name: ${{ matrix.sanitizer }}-artifacts
path: ./out/artifacts path: ./out/artifacts