diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4abf7e6f..be443423 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,23 +8,17 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - qtver: ['5.12.12', '6.5.3'] + qtver: [5.12.12, 6.5.3] steps: - name: Checkout uses: actions/checkout@v4 - - name: Cache Qt - id: cache-qt - uses: actions/cache@v2 - with: - path: ${{ github.workspace }}/Qt/ - key: ${{ runner.os }}-QtCache-${{ runner.qtver }} - - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: ${{ runner.qtver }} dir: "${{ github.workspace }}/Qt/" + cache: true - name: Install Linux dependencies if: "contains( matrix.os, 'ubuntu')"