Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

steps:
# Checkout variorum repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install deps on ubuntu
run: |
Expand Down Expand Up @@ -166,11 +166,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
python-version: [3.11]

steps:
# Checkout variorum repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Check license headers
run: |
Expand Down
3 changes: 2 additions & 1 deletion src/utilities/verify_msr_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,9 @@ def check_msr_files_access(verbose):
err = check_msr_kernel_loaded(verbose)
if err == 0:
err = check_msr_files_character_devices(
verbose) or check_msr_files_access(
verbose
) or check_msr_files_access(verbose)
)
if err == 0:
print("-- Valid kernel loaded: msr")
found_valid_kernel = 1
Expand Down
Loading