From 3f6bbd0c8ffe2bb933772c51b86b3cc205db44b5 Mon Sep 17 00:00:00 2001 From: Garey Akhmetshin Date: Wed, 13 Nov 2024 08:59:16 +0500 Subject: [PATCH] Test changes --- .github/workflows/cmake.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 169f8aa..47b6223 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -11,7 +11,7 @@ jobs: CMAKE_TOOLCHAIN_FILE: ${{github.workspace}}/cmake/linux-i686.cmake steps: - - uses: actions/checkout + - uses: actions/checkout@v4 - name: Configure CMake # Use a bash shell so we can use the same syntax for environment variable # access regardless of the host operating system @@ -31,7 +31,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout + - uses: actions/checkout@v4 - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory @@ -66,16 +66,16 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - name: Checkout - uses: actions/checkout + uses: actions/checkout@v4 - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Deploying linux artifacts - uses: actions/download-artifact + uses: actions/download-artifact@v4 with: name: linux - name: Deploying windows artifacts - uses: actions/download-artifact + uses: actions/download-artifact@v4 with: name: windows