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.
This commit is contained in:
Joe Rozner
2022-06-19 11:42:31 -07:00
parent 5ed993d74e
commit eb37cec76e
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ jobs:
runs-on: '${{ matrix.os }}' runs-on: '${{ matrix.os }}'
strategy: strategy:
matrix: matrix:
os: [ubuntu-20.04, ubuntu-18.04] os: [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04]
env: env:
AFL_SKIP_CPUFREQ: 1 AFL_SKIP_CPUFREQ: 1
AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES: 1 AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES: 1

View File

@ -15,7 +15,7 @@ jobs:
working-directory: custom_mutators/rust working-directory: custom_mutators/rust
strategy: strategy:
matrix: matrix:
os: [ubuntu-20.04] os: [ubuntu-22.04, ubuntu-20.04]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install Rust Toolchain - name: Install Rust Toolchain