From 2e6f6ca8d0cb46e71c8a0f2e06172297799980c6 Mon Sep 17 00:00:00 2001 From: John Hinnegan <426690+softwaregravy@users.noreply.github.com> Date: Sun, 18 Sep 2022 10:36:09 -0400 Subject: [PATCH] Update to checkout V3 Update to use [`actions/checkout@v3`](https://github.com/actions/checkout) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4e0c2dd..cb31bd9 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ jobs: name: Formatting Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run clang-format style check for C/C++/Protobuf programs. uses: jidicula/clang-format-action@v4.9.0 with: @@ -109,7 +109,7 @@ jobs: - 'src' - 'examples' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run clang-format style check for C/C++/Protobuf programs. uses: jidicula/clang-format-action@v4.9.0 with: @@ -136,7 +136,7 @@ jobs: - check: 'examples' exclude: '' # Nothing to exclude steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run clang-format style check for C/C++/Protobuf programs. uses: jidicula/clang-format-action@v4.9.0 with: