diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0941f9091..ba5a53106 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 f271772f9..54e3cebdf 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 a2a830a9a..e6473ca1e 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.5.3 + 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.5.3 + - 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 ebfe45b05..1beff333b 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