From dca9cf3bea781ed67c1b8e376900fd84ff6761ca Mon Sep 17 00:00:00 2001 From: Simon Dodsley Date: Thu, 30 Oct 2025 11:44:56 -0400 Subject: [PATCH 1/3] Upgrade GitHub Actions versions in ansible-lint workflow Updated actions/checkout and actions/setup-python versions. --- .github/workflows/ansible-lint.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index dfa143e1..31427a60 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -5,6 +5,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: '3.12' - name: Run ansible-lint uses: ansible/ansible-lint@main From c06147374c9613448628c1085c0e093bea941150 Mon Sep 17 00:00:00 2001 From: Simon Dodsley Date: Thu, 30 Oct 2025 11:48:24 -0400 Subject: [PATCH 2/3] Add ansible-lint step to GitHub Actions workflow --- .github/workflows/ansible-lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index 31427a60..7747e17e 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -10,5 +10,8 @@ jobs: uses: actions/setup-python@v6 with: python-version: '3.12' + - name: Run ansible-lint uses: ansible/ansible-lint@main + with: + setup_python: false From 9694bd85cb2a15e00b5ec6b946cca671063ce4c3 Mon Sep 17 00:00:00 2001 From: Simon Dodsley Date: Thu, 30 Oct 2025 11:50:00 -0400 Subject: [PATCH 3/3] Update ansible-lint workflow to remove Python setup Removed unnecessary setup for ansible-lint. --- .github/workflows/ansible-lint.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index 7747e17e..3a795402 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -10,7 +10,6 @@ jobs: uses: actions/setup-python@v6 with: python-version: '3.12' - - name: Run ansible-lint uses: ansible/ansible-lint@main with: