diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2022-04-22 23:06:39 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2022-04-26 11:13:57 +0200 |
commit | c84fc00b371cb30b1b0d4bfde015662e1a8542a7 (patch) | |
tree | bc3ce74208ffe793fd704dd2cc99fdb7e345a602 /.github/workflows | |
parent | Merge pull request #23160 from keszybz/compress-defines (diff) | |
download | systemd-c84fc00b371cb30b1b0d4bfde015662e1a8542a7.tar.xz systemd-c84fc00b371cb30b1b0d4bfde015662e1a8542a7.zip |
ci: unpin CFLite
The idea was to catch CFLite regressions but since the action itself
pulls the latest docker images it can't be pinned properly and issues
like https://github.com/google/clusterfuzzlite/issues/91 are going to
pop up anyway. Let's unpin it by analogy with CIFuzz and hope it doesn't
break very often.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/cflite_pr.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cflite_pr.yml b/.github/workflows/cflite_pr.yml index 3fe2bac618..a35a97f046 100644 --- a/.github/workflows/cflite_pr.yml +++ b/.github/workflows/cflite_pr.yml @@ -25,13 +25,13 @@ jobs: steps: - name: Build Fuzzers (${{ matrix.sanitizer }}) id: build - uses: google/clusterfuzzlite/actions/build_fuzzers@41dccd0566905e2a7d1724e7883edbfa66d78877 + uses: google/clusterfuzzlite/actions/build_fuzzers@v1 with: sanitizer: ${{ matrix.sanitizer }} github-token: ${{ secrets.GITHUB_TOKEN }} - name: Run Fuzzers (${{ matrix.sanitizer }}) id: run - uses: google/clusterfuzzlite/actions/run_fuzzers@41dccd0566905e2a7d1724e7883edbfa66d78877 + uses: google/clusterfuzzlite/actions/run_fuzzers@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} fuzz-seconds: 1200 |