Skip to content

Commit

Permalink
chore: Use latest versions of GitHub Actions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
micxer committed May 18, 2024
1 parent 35276b5 commit 8a83a38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Run ansible-lint
uses: ansible-community/ansible-lint-action@v6
uses: ansible/ansible-lint@v24
6 changes: 3 additions & 3 deletions .github/workflows/ansible-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: "dbrennand.autorestic"

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

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- run: pip3 install ansible-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
molecule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: dbrennand.autorestic
- uses: gofrolist/molecule-action@v2
Expand Down

0 comments on commit 8a83a38

Please sign in to comment.