[workflows] update 'checkout' & 'setup-python' versions
This commit is contained in:
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@@ -29,7 +29,7 @@ jobs:
|
|||||||
}}
|
}}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
|
|
||||||
- uses: docker/metadata-action@v5
|
- uses: docker/metadata-action@v5
|
||||||
id: metadata
|
id: metadata
|
||||||
|
|||||||
4
.github/workflows/executables.yml
vendored
4
.github/workflows/executables.yml
vendored
@@ -37,10 +37,10 @@ jobs:
|
|||||||
python-packages: "toml"
|
python-packages: "toml"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }} ${{ matrix.architecture }}
|
- name: Set up Python ${{ matrix.python-version }} ${{ matrix.architecture }}
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
architecture: ${{ matrix.architecture }}
|
architecture: ${{ matrix.architecture }}
|
||||||
|
|||||||
2
.github/workflows/pages.yml
vendored
2
.github/workflows/pages.yml
vendored
@@ -44,7 +44,7 @@ jobs:
|
|||||||
url: ${{ steps.deployment.outputs.page_url }}
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- uses: actions/configure-pages@v4
|
- uses: actions/configure-pages@v4
|
||||||
|
|
||||||
- name: Copy static files
|
- name: Copy static files
|
||||||
|
|||||||
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
@@ -26,14 +26,14 @@ jobs:
|
|||||||
- "pypy3.9"
|
- "pypy3.9"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Check file permissions
|
- name: Check file permissions
|
||||||
run: |
|
run: |
|
||||||
if [[ "$(find ./gallery_dl -type f -not -perm 644)" ]]; then exit 1; fi
|
if [[ "$(find ./gallery_dl -type f -not -perm 644)" ]]; then exit 1; fi
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user