From bc5a596035744128883a0db02754038ce53e4666 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Tue, 12 Aug 2025 11:16:01 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 --- .github/workflows/examples/only-PR-comments.yml | 2 +- .github/workflows/examples/only-clang-format.yml | 2 +- .github/workflows/examples/only-clang-tidy.yml | 2 +- README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/examples/only-PR-comments.yml b/.github/workflows/examples/only-PR-comments.yml index 389248e4..d4771330 100644 --- a/.github/workflows/examples/only-PR-comments.yml +++ b/.github/workflows/examples/only-PR-comments.yml @@ -13,7 +13,7 @@ jobs: permissions: # (1)! pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # ... optionally setup build env to create a compilation database diff --git a/.github/workflows/examples/only-clang-format.yml b/.github/workflows/examples/only-clang-format.yml index a216b7e2..c7450d82 100644 --- a/.github/workflows/examples/only-clang-format.yml +++ b/.github/workflows/examples/only-clang-format.yml @@ -11,7 +11,7 @@ jobs: cpp-linter: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # ... optionally setup build env to create a compilation database diff --git a/.github/workflows/examples/only-clang-tidy.yml b/.github/workflows/examples/only-clang-tidy.yml index 9f93f074..e673e44b 100644 --- a/.github/workflows/examples/only-clang-tidy.yml +++ b/.github/workflows/examples/only-clang-tidy.yml @@ -11,7 +11,7 @@ jobs: cpp-linter: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # ... optionally setup build env to create a compilation database diff --git a/README.md b/README.md index 1bc3c631..eb641420 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The content of the file should be in the following format. ```yaml steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: cpp-linter/cpp-linter-action@v2 id: linter env: