Skip to content

Commit 8a83a38

Browse files
committed
chore: Use latest versions of GitHub Actions
This commit updates the GitHub Actions workflow file to use version v24 of ansible/ansible-lint instead of the archived version v6 ansible/ansible-lint-action. Also it update the action/checkout to v4.
1 parent 35276b5 commit 8a83a38

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ansible-lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77

88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010

1111
- name: Run ansible-lint
12-
uses: ansible-community/ansible-lint-action@v6
12+
uses: ansible/ansible-lint@v24

.github/workflows/ansible-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
path: "dbrennand.autorestic"
1818

@@ -22,9 +22,9 @@ jobs:
2222
- id: role_name
2323
run: echo "::set-output name=role_name::$(yq -r '.galaxy_info.role_name' meta/main.yml)"
2424

25-
- uses: actions/setup-python@v4
25+
- uses: actions/setup-python@v5
2626
with:
27-
python-version: "3.10"
27+
python-version: "3.11"
2828

2929
- run: pip3 install ansible-core
3030

.github/workflows/molecule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
molecule:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
with:
1414
path: dbrennand.autorestic
1515
- uses: gofrolist/molecule-action@v2

0 commit comments

Comments
 (0)