diff options
author | EWouters <6179932+EWouters@users.noreply.github.com> | 2022-05-25 09:37:35 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-25 23:15:08 +0100 |
commit | 860c4763c3721eacb3c5256efbf740101923309a (patch) | |
tree | 5ead9ca7b5e75e577e5353f0dcb92ebba6fdb704 /.github/workflows/pvs-studio-static-analysis.yml | |
parent | 0c74f308195fe6b773782a25e2e899f481801801 (diff) | |
download | serenity-860c4763c3721eacb3c5256efbf740101923309a.zip |
Meta: Use Ubuntu 22.04 images for static analysis
Fixes 2f1029e while `ubuntu-latest` is not `ubuntu-22.04`.
Diffstat (limited to '.github/workflows/pvs-studio-static-analysis.yml')
-rw-r--r-- | .github/workflows/pvs-studio-static-analysis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pvs-studio-static-analysis.yml b/.github/workflows/pvs-studio-static-analysis.yml index 80c11cfb98..6eef54734b 100644 --- a/.github/workflows/pvs-studio-static-analysis.yml +++ b/.github/workflows/pvs-studio-static-analysis.yml @@ -7,7 +7,7 @@ on: jobs: build: name: Static Analysis - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 env: PVS_STUDIO_ANALYSIS_ARCH: i686 if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master' |