diff --git a/.github/workflows/testing-matrix.yaml b/.github/workflows/testing-matrix.yaml index 28f821e4d..2d218d763 100644 --- a/.github/workflows/testing-matrix.yaml +++ b/.github/workflows/testing-matrix.yaml @@ -76,11 +76,14 @@ jobs: restore-keys: | ${{ runner.os }}-${{ matrix.os }}-brew- + - name: Resolve dependencies + run: swift package resolve + - name: Cache SPM uses: actions/cache@v4 with: path: .build - key: ${{ runner.os }}-${{ matrix.os }}-${{ matrix.xcode }}-spm-${{ hashFiles('**/Package.resolved') }} + key: ${{ runner.os }}-${{ matrix.os }}-${{ matrix.xcode }}-spm-${{ hashFiles('Package.resolved') }} restore-keys: | ${{ runner.os }}-${{ matrix.os }}-${{ matrix.xcode }}-spm-