diff options
author | Egor Tensin <egor@tensin.name> | 2024-01-28 13:37:57 +0100 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2024-01-28 13:37:57 +0100 |
commit | 354f84bdb1c72c32f3aee64cb46cf6a9d61b8423 (patch) | |
tree | 4c147f1d74fdc619605a1ea36a3bc18bb1bc53fd /.github/workflows/ci.yml | |
parent | README: update (diff) | |
download | vk-scripts-354f84bdb1c72c32f3aee64cb46cf6a9d61b8423.tar.gz vk-scripts-354f84bdb1c72c32f3aee64cb46cf6a9d61b8423.zip |
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a564a9b..685ccca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,11 +26,11 @@ jobs: name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '${{ matrix.python-version }}' - name: 'Install package & dependencies' @@ -49,11 +49,11 @@ jobs: name: Publish steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Verify package can be installed @@ -63,7 +63,7 @@ jobs: - name: Build package run: python -m build - name: Publish as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist |