From 55292f73bbbe3cbd4aee069861e17dcc3586c767 Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Mon, 10 Mar 2025 01:27:42 +0100 Subject: [PATCH] fix: Replace ubuntu-latest to ubuntu 22.04 --- .github/workflows/build_cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 504dd75..ab61459 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -258,20 +258,20 @@ jobs: # The json is the same for all platforms, but we need to save one - name: Upload plugin json - if: matrix.config.os == 'ubuntu-latest' + if: startsWith(matrix.config.os, 'ubuntu') uses: actions/upload-artifact@v4 with: name: ${{ env.PLUGIN_NAME }}-origin-json path: ./build/build/${{ env.PLUGIN_NAME }}.json - name: Run unit tests - if: matrix.config.os == 'ubuntu-latest' + if: startsWith(matrix.config.os, 'ubuntu') run: | xvfb-run ./build/build/test/QodeAssistTest update_json: if: contains(github.ref, 'tags/v') - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: build steps: