Skip to content

Commit 17a1402

Browse files
authored
Merge pull request #300 from mbaldessari/ci-update
ci update
2 parents ce520d2 + 7fa15b1 commit 17a1402

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ jobs:
88

99
steps:
1010
# Important: This sets up your GITHUB_WORKSPACE environment variable
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212

1313
- name: Lint Ansible Playbook
14-
# Using the latest as of today (2023-04-15) v6.14.4
15-
uses: ansible/ansible-lint-action@v6.14.4
14+
uses: ansible/ansible-lint-action@v6
1615
# Let's point it to the path
1716
with:
1817
path: "ansible/"

.github/workflows/ansible-unittest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
# Checkout the code base #
3333
##########################
3434
- name: Checkout Code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
# Full git history is needed to get a proper list of changed files within `super-linter`
3838
fetch-depth: 0
3939

4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v1
41+
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444

.github/workflows/jsonschema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
# Checkout the code base #
3333
##########################
3434
- name: Checkout Code
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
# Full git history is needed to get a proper list of changed files within `super-linter`
3838
fetch-depth: 0
3939

4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v1
41+
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Checkout the code base #
3030
##########################
3131
- name: Checkout Code
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
# Full git history is needed to get a proper list of changed files within `super-linter`
3535
fetch-depth: 0

.github/workflows/superlinter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
# Full git history is needed to get a proper list of changed files within `super-linter`
1818
fetch-depth: 0

0 commit comments

Comments
 (0)