diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-12-11 15:51:28 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-12-11 15:51:28 +0100 |
commit | fe742401d43928aefc299c3e4d2f506a8388a735 (patch) | |
tree | 5b5bcc4b5a834a80cece4c0d14302e496650bff7 /.github/workflows/ci_github.yml | |
parent | make .gitattributes more consistent (diff) | |
download | cmake-common-fe742401d43928aefc299c3e4d2f506a8388a735.tar.gz cmake-common-fe742401d43928aefc299c3e4d2f506a8388a735.zip |
workflows: upgrade actions
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci_github.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/ci_github.yml b/.github/workflows/ci_github.yml index ae35e4d..4a15cd6 100644 --- a/.github/workflows/ci_github.yml +++ b/.github/workflows/ci_github.yml @@ -31,11 +31,13 @@ jobs: BOOST_VERSION: 1.72.0 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 + with: + python-version: '3.x' - name: Cache Boost - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: '${{ runner.workspace }}/build/boost_*.tar.gz' key: 'boost_${{ env.BOOST_VERSION }}' |