mirror of
https://github.com/mrlesmithjr/ansible-manage-lvm.git
synced 2026-02-04 00:39:26 +03:00
fix: update GitHub Actions to use current versions
- Update actions/checkout to v4 - Update actions/setup-python to v5 - Update actions/cache to v4 (fixes deprecation failures) - Fix ansible-lint role-name rule violations
This commit is contained in:
@@ -1,2 +1,3 @@
|
|||||||
skip_list:
|
skip_list:
|
||||||
- name[casing]
|
- name[casing]
|
||||||
|
- role-name
|
||||||
|
|||||||
6
.github/workflows/molecule.yml
vendored
6
.github/workflows/molecule.yml
vendored
@@ -20,14 +20,14 @@ jobs:
|
|||||||
python-version: [3.9]
|
python-version: [3.9]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
||||||
|
|||||||
6
.github/workflows/release-galaxy.yml
vendored
6
.github/workflows/release-galaxy.yml
vendored
@@ -13,14 +13,14 @@ jobs:
|
|||||||
galaxy:
|
galaxy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ galaxy_info:
|
|||||||
author: Larry Smith Jr.
|
author: Larry Smith Jr.
|
||||||
description: Ansible role to manage(create, extend, resize) LVM Groups/Logical Volumes.
|
description: Ansible role to manage(create, extend, resize) LVM Groups/Logical Volumes.
|
||||||
namespace: mrlesmithjr
|
namespace: mrlesmithjr
|
||||||
role_name: manage_lvm
|
role_name: manage-lvm
|
||||||
|
|
||||||
license: MIT
|
license: MIT
|
||||||
min_ansible_version: "1.2"
|
min_ansible_version: "1.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user