From cb11ffa15347262aa90fae30da2cb5d411b081b2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 08:36:49 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/build.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/linter.yml | 4 ++-- .github/workflows/rebase.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0941f909..ba5a5310 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: CMAKE_INSTALL_PREFIX: "${{ github.workspace }}/install" steps: - name: Checkout Sample-Server - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: Sample-Server submodules: recursive @@ -63,7 +63,7 @@ jobs: IS_NOT_PR: "${{ !github.head_ref && true }}" steps: - name: Checkout Sample-Server - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: Sample-Server submodules: recursive diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f271772f..54e3cebd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout Sample-Server - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 1610f26d..e6473ca1 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -37,7 +37,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: # Full git history is needed to get a proper list # of changed files within `super-linter` @@ -59,7 +59,7 @@ jobs: name: Lint Code Base (cmake-format-lint) runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3.6.0 + - uses: actions/checkout@v4.0.0 - name: Format CMake files id: cmake-format uses: PuneetMatharu/cmake-format-lint-action@v1.0.4 diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index ebfe45b0..1beff333 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the latest code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: token: ${{ secrets.REBASE_PAT }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo