Skip to content

Commit d769e8b

Browse files
committed
Make local dev with molecule a little easier.
1 parent 8c87b67 commit d769e8b

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Check out the codebase.
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323
with:
2424
path: 'geerlingguy.mysql'
2525

2626
- name: Set up Python 3.
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: '3.x'
3030

@@ -50,12 +50,12 @@ jobs:
5050

5151
steps:
5252
- name: Check out the codebase.
53-
uses: actions/checkout@v2
53+
uses: actions/checkout@v4
5454
with:
5555
path: 'geerlingguy.mysql'
5656

5757
- name: Set up Python 3.
58-
uses: actions/setup-python@v2
58+
uses: actions/setup-python@v5
5959
with:
6060
python-version: '3.x'
6161

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Check out the codebase.
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626
with:
2727
path: 'geerlingguy.mysql'
2828

2929
- name: Set up Python 3.
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v5
3131
with:
3232
python-version: '3.x'
3333

molecule/default/molecule.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
role_name_check: 1
33
dependency:
44
name: galaxy
5+
options:
6+
ignore-errors: true
57
driver:
68
name: docker
79
platforms:
810
- name: instance
9-
image: "geerlingguy/docker-${MOLECULE_DISTRO:-centos7}-ansible:latest"
11+
image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux8}-ansible:latest"
1012
command: ${MOLECULE_DOCKER_COMMAND:-""}
1113
volumes:
1214
- /sys/fs/cgroup:/sys/fs/cgroup:rw

0 commit comments

Comments
 (0)