diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 16:12:07 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 16:13:21 +0300 |
commit | c3712f5fa39fcc43577747ba60cefe80da9a4ad2 (patch) | |
tree | 773ac8cecf3cd9b7b53ad8884ad93d481d8c2057 | |
parent | actions/check-libraries: remove the debug dir call (diff) | |
download | build-boost-c3712f5fa39fcc43577747ba60cefe80da9a4ad2.tar.gz build-boost-c3712f5fa39fcc43577747ba60cefe80da9a4ad2.zip |
workflows/test: use cache@v2
v2 has been bumped to v2.1.5 finally, which includes a necessary bugfix.
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 43d9c92..74eebc3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: uses: actions/checkout@v2 - name: Cache Boost - uses: actions/cache@v2.1.4 + uses: actions/cache@v2 with: path: '${{ runner.workspace }}/boost_*.tar.gz' key: 'boost-${{ matrix.version }}' @@ -103,7 +103,7 @@ jobs: uses: actions/checkout@v2 - name: Cache Boost - uses: actions/cache@v2.1.4 + uses: actions/cache@v2 with: path: '${{ runner.workspace }}/boost_*.tar.gz' key: 'boost-${{ matrix.version }}' |