diff options
author | Joe Rozner <joe@deadbytes.net> | 2022-06-19 11:42:31 -0700 |
---|---|---|
committer | Joe Rozner <joe@deadbytes.net> | 2022-06-19 11:42:31 -0700 |
commit | eb37cec76ebf5d61bde96ff2993d3df3ef97f607 (patch) | |
tree | b6995b71aedfc56abc5b7d5409c6fa5fff9f4033 | |
parent | 5ed993d74ebf179d63826e1d87fdd9295ea07f4b (diff) | |
download | afl++-eb37cec76ebf5d61bde96ff2993d3df3ef97f607.tar.gz |
Update workflows to ubuntu 22.04
22.04 is the most recent LTS release and the official docker container is running on it. It probably makes sense to run the unit tests on that as well.
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/rust_custom_mutator.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 886148df..799b72e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: '${{ matrix.os }}' strategy: matrix: - os: [ubuntu-20.04, ubuntu-18.04] + os: [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04] env: AFL_SKIP_CPUFREQ: 1 AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES: 1 diff --git a/.github/workflows/rust_custom_mutator.yml b/.github/workflows/rust_custom_mutator.yml index de2b184a..c279439e 100644 --- a/.github/workflows/rust_custom_mutator.yml +++ b/.github/workflows/rust_custom_mutator.yml @@ -15,7 +15,7 @@ jobs: working-directory: custom_mutators/rust strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-22.04, ubuntu-20.04] steps: - uses: actions/checkout@v2 - name: Install Rust Toolchain |