Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from v1 to v2.1.3 #254

Merged
merged 1 commit into from
Dec 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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