Skip to content

Commit

Permalink
ci: bump actions/checkout to v4 and actions/setup-python to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobLichterfeld committed Mar 15, 2024
1 parent 3dc77fd commit e15bd5f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: "Lint"
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install lint dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/set-up-ansible/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: 'Set up Ansible'
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Ansible
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/set-up-molecule/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: 'Set up Molecule'
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Molecule
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/set-up-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description: 'Set up Python'
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# prevent stuck jobs
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: ./.github/actions/set-up-python
Expand All @@ -36,7 +36,7 @@ jobs:
matrix:
distro: [ubuntu2204]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: ./.github/actions/set-up-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_role_on_ansible_galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: ./.github/actions/set-up-python
Expand Down

0 comments on commit e15bd5f

Please sign in to comment.