Skip to content

Commit

Permalink
Bump actions/cache from v1 to v2.1.3
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from v1 to v2.1.3.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...0781355)

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 12, 2020
1 parent 518b8fd commit a7ff198
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Restore & Cache openssl (${{ env.OPENSSL_VERSION }})
if: matrix.compiler == 'gcc'
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: openssl-cache
with:
path: ${{ runner.temp }}/libs/openssl
Expand All @@ -71,7 +71,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache boost (${{ env.BOOST_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: boost-cache
with:
path: ${{ runner.temp }}/libs/boost
Expand All @@ -87,7 +87,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache toml11 (${{ env.TOML11_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: toml11-cache
with:
path: ${{ runner.temp }}/libs/toml11
Expand All @@ -105,7 +105,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache libgit2 (${{ env.LIBGIT2_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: libgit2-cache
with:
path: ${{ runner.temp }}/libs/libgit2
Expand All @@ -127,7 +127,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache clipp (${{ env.CLIPP_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: clipp-cache
with:
path: ${{ runner.temp }}/libs/clipp
Expand All @@ -143,7 +143,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache fmt (${{ env.FMT_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: fmt-cache
with:
path: ${{ runner.temp }}/libs/fmt
Expand All @@ -159,7 +159,7 @@ jobs:
working-directory: ${{ runner.temp }}

# - name: Restore & Cache mitama-result (${{ env.MITAMA_RESULT_VERSION }})
# uses: actions/cache@v1
# uses: actions/cache@v2.1.3
# id: mitama-result-cache
# with:
# path: ${{ runner.temp }}/libs/mitama-result
Expand All @@ -175,7 +175,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache plog (${{ env.PLOG_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: plog-cache
with:
path: ${{ runner.temp }}/libs/plog
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
/usr/bin/${{ matrix.target_platform }}-linux-gnu-gcc
- name: Restore & Cache openssl (${{ env.OPENSSL_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: openssl-cache
with:
path: ${{ runner.temp }}/libs/openssl
Expand All @@ -274,7 +274,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache boost (${{ env.BOOST_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: boost-cache
with:
path: ${{ runner.temp }}/libs/boost
Expand All @@ -299,7 +299,7 @@ jobs:
echo "CXX=${{ matrix.target_platform }}-linux-gnu-g++-${{ matrix.gcc_version }}" >> $GITHUB_ENV
- name: Restore & Cache toml11 (${{ env.TOML11_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: toml11-cache
with:
path: ${{ runner.temp }}/libs/toml11
Expand All @@ -317,7 +317,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache libgit2 (${{ env.LIBGIT2_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: libgit2-cache
with:
path: ${{ runner.temp }}/libs/libgit2
Expand All @@ -339,7 +339,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache clipp (${{ env.CLIPP_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: clipp-cache
with:
path: ${{ runner.temp }}/libs/clipp
Expand All @@ -355,7 +355,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache fmt (${{ env.FMT_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: fmt-cache
with:
path: ${{ runner.temp }}/libs/fmt
Expand All @@ -371,7 +371,7 @@ jobs:
working-directory: ${{ runner.temp }}

# - name: Restore & Cache mitama-result (${{ env.MITAMA_RESULT_VERSION }})
# uses: actions/cache@v1
# uses: actions/cache@v2.1.3
# id: mitama-result-cache
# with:
# path: ${{ runner.temp }}/libs/mitama-result
Expand All @@ -387,7 +387,7 @@ jobs:
working-directory: ${{ runner.temp }}

- name: Restore & Cache plog (${{ env.PLOG_VERSION }})
uses: actions/cache@v1
uses: actions/cache@v2.1.3
id: plog-cache
with:
path: ${{ runner.temp }}/libs/plog
Expand Down

0 comments on commit a7ff198

Please sign in to comment.