Skip to content
Snippets Groups Projects
Commit 60905ef5 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

upstream ci: Update Github actions

Github actions checkout v3.1.0 and setup-python v4.3.0 use deprecated
Node.js 16.

Bumping version to checkout v4.1.1 and setup-python v5.1.0 fixes the
workflows, as both use the recommended Node.js 20.

The checkout depth has been set to 1 (shallow copy) for all tasks that
do not require git history to be available.
parent 0d48da06
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ jobs: ...@@ -8,7 +8,7 @@ jobs:
name: Verify ansible-test sanity name: Verify ansible-test sanity
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Run ansible-test - name: Run ansible-test
......
...@@ -8,10 +8,10 @@ jobs: ...@@ -8,10 +8,10 @@ jobs:
name: Check Ansible Documentation with ansible-core 2.13. name: Check Ansible Documentation with ansible-core 2.13.
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: '3.x' python-version: '3.x'
- name: Install Ansible 2.13 - name: Install Ansible 2.13
...@@ -25,10 +25,10 @@ jobs: ...@@ -25,10 +25,10 @@ jobs:
name: Check Ansible Documentation with ansible-core 2.14. name: Check Ansible Documentation with ansible-core 2.14.
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: '3.x' python-version: '3.x'
- name: Install Ansible 2.14 - name: Install Ansible 2.14
...@@ -42,10 +42,10 @@ jobs: ...@@ -42,10 +42,10 @@ jobs:
name: Check Ansible Documentation with ansible-core 2.15. name: Check Ansible Documentation with ansible-core 2.15.
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: '3.x' python-version: '3.x'
- name: Install Ansible 2.15 - name: Install Ansible 2.15
...@@ -59,10 +59,10 @@ jobs: ...@@ -59,10 +59,10 @@ jobs:
name: Check Ansible Documentation with latest Ansible version. name: Check Ansible Documentation with latest Ansible version.
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: '3.x' python-version: '3.x'
- name: Install Ansible-latest - name: Install Ansible-latest
......
...@@ -8,10 +8,10 @@ jobs: ...@@ -8,10 +8,10 @@ jobs:
name: Verify ansible-lint name: Verify ansible-lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: "3.x" python-version: "3.x"
- name: Run ansible-lint - name: Run ansible-lint
...@@ -25,10 +25,10 @@ jobs: ...@@ -25,10 +25,10 @@ jobs:
name: Verify yamllint name: Verify yamllint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: "3.x" python-version: "3.x"
- name: Run yaml-lint - name: Run yaml-lint
...@@ -38,10 +38,10 @@ jobs: ...@@ -38,10 +38,10 @@ jobs:
name: Verify pydocstyle name: Verify pydocstyle
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: "3.x" python-version: "3.x"
- name: Run pydocstyle - name: Run pydocstyle
...@@ -53,10 +53,10 @@ jobs: ...@@ -53,10 +53,10 @@ jobs:
name: Verify flake8 name: Verify flake8
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: "3.x" python-version: "3.x"
- name: Run flake8 - name: Run flake8
...@@ -68,10 +68,10 @@ jobs: ...@@ -68,10 +68,10 @@ jobs:
name: Verify pylint name: Verify pylint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- uses: actions/setup-python@v4.3.0 - uses: actions/setup-python@v5.1.0
with: with:
python-version: "3.x" python-version: "3.x"
- name: Run pylint - name: Run pylint
...@@ -83,8 +83,8 @@ jobs: ...@@ -83,8 +83,8 @@ jobs:
name: Shellcheck name: Shellcheck
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- name: Run ShellCheck - name: Run ShellCheck
uses: ludeeus/action-shellcheck@master uses: ludeeus/action-shellcheck@master
...@@ -8,9 +8,9 @@ jobs: ...@@ -8,9 +8,9 @@ jobs:
name: Verify readme name: Verify readme
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.1.0 - uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 1
- name: Run readme test - name: Run readme test
run: | run: |
error=0 error=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment