Skip to content

Commit 32c51cb

Browse files
authored
Merge branch 'CloudNativeDataPlane:main' into main
2 parents 1b18642 + 8250fab commit 32c51cb

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/cache-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Set up Docker Buildx
2929
id: buildx
30-
uses: docker/setup-buildx-action@v3
30+
uses: docker/setup-buildx-action@v4
3131

3232
# Registry login step intentionally missing
3333

@@ -40,7 +40,7 @@ jobs:
4040
${{ runner.os }}-single-buildx
4141
4242
- name: Build production image
43-
uses: docker/build-push-action@v6
43+
uses: docker/build-push-action@v7
4444
with:
4545
context: .
4646
builder: ${{ steps.buildx.outputs.name }}

.github/workflows/smoke.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: meson test -C builddir --suite short
4444

4545
- name: Upload testlog
46-
uses: actions/upload-artifact@v6
46+
uses: actions/upload-artifact@v7
4747
if: success() || failure()
4848
with:
4949
name: testlog.txt

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ repos:
1212
hooks:
1313
- id: yamllint
1414
- repo: https://github.com/pre-commit/mirrors-clang-format
15-
rev: v21.1.8
15+
rev: v22.1.1
1616
hooks:
1717
- id: clang-format
1818
types_or: [c++, c]
1919
args: [-i, --style=file]
20-
- repo: https://github.com/DavidAnson/markdownlint-cli2
21-
rev: v0.21.0
22-
hooks:
23-
- id: markdownlint-cli2-rules-docker
20+
# - repo: https://github.com/DavidAnson/markdownlint-cli2
21+
# rev: v0.21.0
22+
# hooks:
23+
# - id: markdownlint-cli2-rules-docker
2424
- repo: https://github.com/codespell-project/codespell
25-
rev: v2.4.1
25+
rev: v2.4.2
2626
hooks:
2727
- id: codespell
2828
args: [--toml, cndp-codespell.precommit-toml]

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Or with git-clang-format if it is installed:
3030
git clang-format --diff
3131
```
3232

33-
Or a [Pre-commit](https://pre-commit.com/#install) hook is available and can be used
34-
to apply the linters to modified files in a commit. You can install pre-commit
35-
by running the following command:
33+
Or a [Pre-commit](https://pre-commit.com/#install) hook is available and can be
34+
used to apply the linters to modified files in a commit. You can install
35+
pre-commit by running the following command:
3636

3737
```bash
3838
pip install pre-commit

0 commit comments

Comments
 (0)