diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 0fb81c8..6855310 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -24,7 +24,9 @@ jobs: - uses: actions/checkout@v4 - name: Dependencies - run: ./dependencies.sh ${{ matrix.compiler }} + run: | + sudo apt update + ./dependencies.sh ${{ matrix.compiler }} - name: Setup compiler run: | @@ -60,4 +62,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: testing-with-${{ matrix.compiler }}-${{ matrix.build_type }}.log - path: ${{github.workspace}}/build-${{ matrix.compiler }}-${{ matrix.build_type }}/Testing/Temporary/LastTest.log \ No newline at end of file + path: ${{github.workspace}}/build-${{ matrix.compiler }}-${{ matrix.build_type }}/Testing/Temporary/LastTest.log