diff --git a/.github/workflows/linux-full-tests.yml b/.github/workflows/linux-full-tests.yml index 8d298144201..93ae2fb25b8 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.1 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..807cbb25d44 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.1 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..e9ff634f4c2 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.1 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..c09c8c6ec76 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.1 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..03f4d9031f0 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.1 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..f8e25ee4ba7 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.1 with: path: ~/.ccache key: linux-build-times-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp') }}