From d21f20ae7560a24cd4a75ef225501e6b5b71ca2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Apr 2022 06:10:50 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.1) --- 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..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') }}