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:
|
||||
- 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]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- uses: actions/cache@v2
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
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:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- uses: actions/cache@v2
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
||||
|
||||
@@ -3,7 +3,7 @@ galaxy_info:
|
||||
author: Larry Smith Jr.
|
||||
description: Ansible role to manage(create, extend, resize) LVM Groups/Logical Volumes.
|
||||
namespace: mrlesmithjr
|
||||
role_name: manage_lvm
|
||||
role_name: manage-lvm
|
||||
|
||||
license: MIT
|
||||
min_ansible_version: "1.2"
|
||||
|
||||
Reference in New Issue
Block a user