diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 05:32:43 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 05:32:43 +0100 |
commit | 6e787373b50fd7c2ddb99f85d4e472061ff54ba8 (patch) | |
tree | 6b5f1af2bbf157935d948d00b187a18b19d4961c /.github/workflows | |
parent | set-output is deprecated (diff) | |
download | build-boost-1.tar.gz build-boost-1.zip |
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 016d1d9..aaf3709 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,16 +39,16 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache Boost - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: '${{ runner.workspace }}/boost_*.tar.gz' key: 'boost-${{ matrix.version }}' - name: Clean up PATH - uses: egor-tensin/cleanup-path@v2 + uses: egor-tensin/cleanup-path@v3 if: runner.os == 'Windows' - name: Set up GCC @@ -105,10 +105,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache Boost - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: '${{ runner.workspace }}/boost_*.tar.gz' key: 'boost-${{ matrix.version }}' @@ -163,10 +163,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache Boost - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: '${{ runner.workspace }}/boost_*.tar.gz' key: 'boost-${{ matrix.version }}' |