From 1f568de531ed0e0c3a4d0b21a79b876e0cd645d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Mar 2022 06:10:58 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linux-full-tests.yml | 2 +- .github/workflows/linux-nondefault.yml | 2 +- .github/workflows/linux.yml | 2 +- .github/workflows/macos-nondefault.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/test-times.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux-full-tests.yml b/.github/workflows/linux-full-tests.yml index 8d298144201..7e790533b53 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 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..a346c98f1fd 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 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..0d621160ae0 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 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..916ce1340cc 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 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..b1aed584678 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 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..01da63aafbf 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 with: path: ~/.ccache key: linux-build-times-${{ github.ref }}-${{ github.head_ref }}-${{ hashFiles('**/*.hpp', '**/*.cpp') }}