Skip to content

Commit

Permalink
CI: update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
flowerysong committed Feb 3, 2024
1 parent f2898fe commit 3c4f8c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: ansible-galaxy collection build -vv

- name: Upload collection
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.COLL_NS }}-${{ env.COLL_NAME }}-*.tar.gz
name: ${{ env.COLL_NS }}-${{ env.COLL_NAME }}
Expand All @@ -55,17 +55,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.ansible_version.python }}
python-version: ${{ matrix.python_version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install 'git+https://github.com/ansible/ansible@${{ matrix.ansible_version }}#egg=ansible-core' pycodestyle pylint pyyaml voluptuous yamllint junit-xml
- name: Download collection
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.COLL_NS }}-${{ env.COLL_NAME }}

Expand Down

0 comments on commit 3c4f8c0

Please sign in to comment.