diff --git a/.github/workflows/linux-full-tests.yml b/.github/workflows/linux-full-tests.yml index 8d298144201..d8158e273b1 100644 --- a/.github/workflows/linux-full-tests.yml +++ b/.github/workflows/linux-full-tests.yml @@ -171,7 +171,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/.ccache key: linux-build-${{ matrix.shortname }}-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp') }} diff --git a/.github/workflows/linux-nondefault.yml b/.github/workflows/linux-nondefault.yml index fef1357c39e..e23fe1787f7 100644 --- a/.github/workflows/linux-nondefault.yml +++ b/.github/workflows/linux-nondefault.yml @@ -124,7 +124,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/.ccache key: linux-nondef-build-${{ matrix.shortname }}-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp') }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8126d2f4eec..bc497fd8c78 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -189,7 +189,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/.ccache key: linux-build-${{ matrix.shortname }}-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp') }} diff --git a/.github/workflows/macos-nondefault.yml b/.github/workflows/macos-nondefault.yml index 7987cc734ff..f9aef01e1b6 100644 --- a/.github/workflows/macos-nondefault.yml +++ b/.github/workflows/macos-nondefault.yml @@ -25,7 +25,7 @@ jobs: run: | brew install automake boost ccache - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/Library/Caches/ccache key: ${{ matrix.os }}-${{ matrix.shortname }}-nondef-build-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp', '**/macos.yml') }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 11a01ef9cc8..e80c742a6ff 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -17,7 +17,7 @@ jobs: run: | brew install automake boost ccache - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/Library/Caches/ccache key: ${{ matrix.os }}-${{ matrix.shortname }}-build-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp', '**/macos.yml') }} diff --git a/.github/workflows/test-times.yml b/.github/workflows/test-times.yml index ed648f02d74..5d18c72205a 100644 --- a/.github/workflows/test-times.yml +++ b/.github/workflows/test-times.yml @@ -6,7 +6,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/.ccache key: linux-build-times-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp') }}