Skip to content

Commit b4587b5

Browse files
committed
Fix spelling and grammer issues + add CI detection
+ Also remove node 20 deprecation for checkout@v4 GH actions Signed-off-by: Russell McGuire <russell.w.mcguire@intel.com>
1 parent 8674883 commit b4587b5

48 files changed

Lines changed: 255 additions & 142 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codespellrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Configuration for codespell (https://github.com/codespell-project/codespell)
2+
# Shared by the CI workflow and local runs: just run `codespell` from the repo root.
3+
[codespell]
4+
skip = ./.git,./build,./third_party,*.svg
5+
# codespell only flags words from its curated misspelling dictionary, but it is not
6+
# language-aware. Add identifiers/terms that collide with real words here (comma-separated).
7+
ignore-words-list = te,pevents

.github/workflows/bindings-sysman-python-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout code
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141

4242
- name: Set up Python ${{ env.PYTHON_VERSION }}
4343
uses: actions/setup-python@v5

.github/workflows/bindings-sysman-python-security-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Set up Python
4040
uses: actions/setup-python@v5

.github/workflows/bindings-sysman-python-unit-tests-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 0 # Full history for better coverage comparison
4444

.github/workflows/build-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
apt-get update
2929
apt-get install -y clang cmake make git
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Build Loader (${{ matrix.build_type }}) with Clang on ${{ matrix.container }}
3232
run: |
3333
mkdir build

.github/workflows/build-msi-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository_owner == 'oneapi-src'
1313
runs-on: [windows-latest]
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v5
1616
- name: Setup Windows build environment
1717
uses: ilammy/msvc-dev-cmd@v1
1818
with:

.github/workflows/build-multi-static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
short-sha: ${{ steps.const.outputs.short-sha }}
2020
ref-slug: ${{ steps.const.outputs.ref-slug }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
clean: true
2525
ref: ${{ github.event.pull_request.head.sha }}
@@ -86,7 +86,7 @@ jobs:
8686
image-name=ghcr.io/${{ github.repository }}/${OS_STRING}
8787
ccache-dir=${CCACHE_DIR}
8888
EOF
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v5
9090
with:
9191
clean: true
9292
fetch-depth: 0

.github/workflows/build-multi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
short-sha: ${{ steps.const.outputs.short-sha }}
2020
ref-slug: ${{ steps.const.outputs.ref-slug }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
clean: true
2525
ref: ${{ github.event.pull_request.head.sha }}
@@ -104,7 +104,7 @@ jobs:
104104
image-name=ghcr.io/${{ github.repository }}/${OS_STRING}
105105
ccache-dir=${CCACHE_DIR}
106106
EOF
107-
- uses: actions/checkout@v4
107+
- uses: actions/checkout@v5
108108
with:
109109
clean: true
110110
fetch-depth: 0

.github/workflows/build-quick-static-n-1.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
# Use ccache-action for ccache setup and caching
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020
path: pr
2121
- uses: hendrikmuhs/ccache-action@v1
2222

2323
# Checkout master branch for static loader source
2424
- name: Checkout master branch for static loader
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v5
2626
with:
2727
ref: master
2828
fetch-depth: 0
@@ -73,14 +73,14 @@ jobs:
7373
runs-on: windows-latest
7474
steps:
7575
# Checkout PR branch (dynamic loader source)
76-
- uses: actions/checkout@v3
76+
- uses: actions/checkout@v5
7777
with:
7878
fetch-depth: 0
7979
path: pr
8080

8181
# Checkout master branch for static loader source
8282
- name: Checkout master branch for static loader
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v5
8484
with:
8585
ref: master
8686
fetch-depth: 0

.github/workflows/build-quick-static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository_owner == 'oneapi-src'
1313
runs-on: [ubuntu-latest]
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v5
1616
- uses: hendrikmuhs/ccache-action@v1
1717
- name: Build Static Loader on Latest Ubuntu
1818
run: |
@@ -48,7 +48,7 @@ jobs:
4848
if: github.repository_owner == 'oneapi-src'
4949
runs-on: [windows-latest]
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v5
5252
- name: Setup Windows build environment
5353
uses: ilammy/msvc-dev-cmd@v1
5454
with:

0 commit comments

Comments
 (0)