diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2531d41f..b48b8c069 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -119,12 +119,13 @@ jobs: - name: repo checkout uses: actions/checkout@v7 + # Caches not accessed within the last week are evicted. + # https://github.com/actions/cache#cache-limits - id: cache-openssl uses: actions/cache@v6 with: path: ~/openssl key: openssl-${{ runner.os }}-${{ matrix.openssl }}-${{ matrix.append-configure || 'default' }} - if: matrix.openssl != 'openssl-master' && matrix.openssl != 'libressl-master' && matrix.openssl != 'aws-lc-latest' - name: Compile OpenSSL library if: steps.cache-openssl.outputs.cache-hit != 'true'