1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00

upgrade actions versions

This commit is contained in:
Mike Fährmann 2022-10-25 15:49:39 +02:00
parent 2952b8891f
commit 0e5d2e128b
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 5 additions and 5 deletions

View File

@ -18,10 +18,10 @@ jobs:
architecture: "x86"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} ${{ matrix.architecture }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
@ -32,7 +32,7 @@ jobs:
python scripts/pyinstaller.py
- name: Upload executable
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: gallery-dl-${{ matrix.os }}-${{ matrix.architecture }}-${{ matrix.python-version }}
path: |

View File

@ -18,10 +18,10 @@ jobs:
python-version: ["3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}