diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 01:32:22 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 01:32:22 +0100 |
commit | 2472a193f257b1eb2c585ed51769588de28696f8 (patch) | |
tree | e5fd87e6207b106ed08cc369980824347ea7b601 /.github/workflows | |
parent | workflows/ci: disable scheduled runs (diff) | |
download | winapi-debug-2472a193f257b1eb2c585ed51769588de28696f8.tar.gz winapi-debug-2472a193f257b1eb2c585ed51769588de28696f8.zip |
workflows/ci: upgrade actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 169d982..82f63fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive - name: Run clang-format @@ -42,16 +42,18 @@ jobs: BOOST_VERSION: '${{ matrix.boost-version }}' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive - name: Cache Boost - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: '${{ runner.workspace }}/build/boost_*.tar.gz' key: 'boost_${{ env.BOOST_VERSION }}' - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 + with: + python-version: '3.x' - name: Set up MinGW uses: egor-tensin/setup-mingw@v2 with: @@ -62,7 +64,7 @@ jobs: - name: Build run: make install - name: Upload binaries - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: 'winapi-debug-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}' path: '${{ runner.workspace }}/build/install/' |