Skip to content

Commit

Permalink
GHA: use the ubuntu-22.04 runner for all workflows
Browse files Browse the repository at this point in the history
This is the current ubuntu-latest.
  • Loading branch information
syncom committed Mar 26, 2024
1 parent 9b4ced7 commit 837c9ed
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-sa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
sacheck:
name: "Clang Static Analysis"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
defaults:
run:
shell: bash -euxo pipefail {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
compiler_c: [gcc]
compiler_cxx: [g++]
language: [ 'cpp' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
steps:
- name: Checkout code
uses: actions/checkout@v4.1.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
compiler_c: [gcc, clang]
compiler_cxx: [g++, clang++]
steps:
Expand Down

0 comments on commit 837c9ed

Please sign in to comment.