mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-22 23:24:44 +00:00
Update GitHub Actions to Node16 versions
This commit is contained in:
parent
b66ca30e84
commit
a3bedadfb6
4 changed files with 15 additions and 15 deletions
4
.github/workflows/branch-man.yml
vendored
4
.github/workflows/branch-man.yml
vendored
|
|
@ -9,7 +9,7 @@ jobs:
|
|||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: linkchecker/linkchecker
|
||||
ref: master
|
||||
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
run: sudo apt install gettext git
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
|
||||
- name: Install Python packages
|
||||
run: >
|
||||
|
|
|
|||
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
|
|
@ -39,15 +39,15 @@ jobs:
|
|||
sudo service clamav-daemon status
|
||||
|
||||
- name: Git clone
|
||||
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 }}"
|
||||
|
||||
- name: Pip cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini', 'pyproject.toml') }}
|
||||
|
|
@ -84,17 +84,17 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Git clone
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Ubuntu packages
|
||||
run: |
|
||||
sudo apt install -y graphviz mandoc
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
|
||||
- name: Pip cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-docs-${{ hashFiles('tox.ini') }}
|
||||
|
|
@ -128,13 +128,13 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Git clone
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
|
||||
- name: Pip cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('tox.ini') }}
|
||||
|
|
|
|||
4
.github/workflows/publish-pages.yml
vendored
4
.github/workflows/publish-pages.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
# Needed for hatch-vcs to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
with:
|
||||
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
|
||||
# Ensure sphinx-autogen is installed in PATH
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
|
||||
- name: Install Python packages
|
||||
run: >
|
||||
|
|
|
|||
4
.github/workflows/release-files.yml
vendored
4
.github/workflows/release-files.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
# Needed for hatch-vcs to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
with:
|
||||
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
run: sudo apt install git
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
|
||||
- name: Install Python packages
|
||||
run: >
|
||||
|
|
|
|||
Loading…
Reference in a new issue