From d60b5c338b0a2a41fd34e935b98c89c83c381b28 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 20:23:06 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/build.yml | 6 +++--- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/linter.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01bf6d5f..d64b39c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: CMAKE_INSTALL_PREFIX: ${{ github.workspace }}/install steps: - name: Checkout Code - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: path: UmatiDashboardOpcUaClient submodules: recursive @@ -75,7 +75,7 @@ jobs: CMAKE_INSTALL_PREFIX: ${{ github.workspace }}/install steps: - name: Checkout Code - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: path: UmatiDashboardOpcUaClient submodules: recursive @@ -119,7 +119,7 @@ jobs: IS_NOT_PR: ${{ !github.head_ref && true }} steps: - name: Checkout Code - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v4.0.0 with: path: UmatiDashboardOpcUaClient submodules: recursive diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a5484001..e35d2579 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout ${{ github.repository }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 1dcba921..8e9e365d 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 + uses: actions/checkout@v4 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 + - uses: actions/checkout@v4 - name: Format CMake files id: cmake-format uses: PuneetMatharu/cmake-format-lint-action@v1.0.4