diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 00:11:55 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 00:11:55 +0100 |
commit | 867093254e56f4b41580efd464c393b071592539 (patch) | |
tree | bdb1692920bd29ef887c471f2c1e49d6b422ef61 /.github/workflows | |
parent | workflows/ci: actualize runner OSes (diff) | |
download | privilege-check-867093254e56f4b41580efd464c393b071592539.tar.gz privilege-check-867093254e56f4b41580efd464c393b071592539.zip |
workflows/ci: upgrade actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15e71cf..d655be9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,11 +28,13 @@ jobs: CONFIGURATION: '${{ matrix.configuration }}' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive - 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: @@ -41,7 +43,7 @@ jobs: - name: Build run: make install - name: Upload binaries - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: 'privilege-check-${{ matrix.toolset }}-${{ matrix.platform }}-${{ matrix.configuration }}' path: '${{ runner.workspace }}/build/install/' |