From 0e5d2e128b02ecb88f7723e272f77814f8cafaad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 25 Oct 2022 15:49:39 +0200 Subject: [PATCH] upgrade actions versions --- .github/workflows/executables.yml | 6 +++--- .github/workflows/tests.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/executables.yml b/.github/workflows/executables.yml index 2954d6f0..b6b015f0 100644 --- a/.github/workflows/executables.yml +++ b/.github/workflows/executables.yml @@ -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: | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1081bed2..5edbe2ed 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 }}