Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CBRD-24572] Change Github Check runner's OS to ubuntu-20.04 #3975

Merged
merged 1 commit into from
Dec 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
jobs:
license:
name: license
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: jitterbit/get-changed-files@v1
Expand Down Expand Up @@ -66,14 +66,14 @@ jobs:
test $result = "PASS" # if non-zero, fail
pr-style:
name: pr-style
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: deepakputhraya/action-pr-title@master
with:
regex: '^\[[A-Z]+-\d+\]\s.+' # Regex the title should match.
code-style:
name: code-style
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Install packages
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
tool_name: code-style (indent, astyle)
cppcheck:
name: cppcheck
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Install packages
run: |
Expand Down