From 773c6137b04bb86236e2d11a3c36756db32f5764 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 06:10:15 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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.11) --- 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..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') }}