From 90014b1798d0e7e20eba6dd90ceaa48e861521bf Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Tue, 14 Nov 2023 21:13:31 +0100 Subject: [PATCH 1/4] :arrow_up: Update the molecule-action to 6.0.1 https://github.com/robertdebock/molecule-action/releases/tag/6.0.1 --- .github/workflows/galaxy.yml | 2 +- .github/workflows/molecule.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/galaxy.yml b/.github/workflows/galaxy.yml index 891ba36..d273a21 100644 --- a/.github/workflows/galaxy.yml +++ b/.github/workflows/galaxy.yml @@ -19,7 +19,7 @@ jobs: path: "${{ github.repository }}" - name: molecule - uses: robertdebock/molecule-action@4.0.8 + uses: robertdebock/molecule-action@6.0.1 release: needs: diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 094dcd5..ccca96e 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -19,4 +19,4 @@ jobs: path: "${{ github.repository }}" - name: molecule - uses: robertdebock/molecule-action@4.0.8 + uses: robertdebock/molecule-action@6.0.1 From b592e227d39f5b2d34e4990bf4a6b85b3c106a68 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Tue, 14 Nov 2023 21:14:13 +0100 Subject: [PATCH 2/4] :arrow_up: Update the galaxy-action to 1.2.1 https://github.com/robertdebock/galaxy-action/releases --- .github/workflows/galaxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/galaxy.yml b/.github/workflows/galaxy.yml index d273a21..2e1eb21 100644 --- a/.github/workflows/galaxy.yml +++ b/.github/workflows/galaxy.yml @@ -28,7 +28,7 @@ jobs: steps: - name: galaxy - uses: robertdebock/galaxy-action@1.2.0 + uses: robertdebock/galaxy-action@1.2.1 with: galaxy_api_key: ${{ secrets.GALAXY_API_KEY }} git_branch: main From bb50f2553b50a3de9fdd6c1595323e0d75cb24a4 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Wed, 15 Nov 2023 00:07:32 +0100 Subject: [PATCH 3/4] Remove deprecated warn command from handler --- handlers/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/handlers/main.yml b/handlers/main.yml index ce783b0..65a72e2 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -3,7 +3,6 @@ - name: reload cron ansible.builtin.shell: cmd: service cron reload - warn: no # Use the shell call because the task sometimes has problems finding the service state # service: # name: cron From 12c63b53450085f499c4e21a5363562c219390a4 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Tue, 14 Nov 2023 21:31:59 +0100 Subject: [PATCH 4/4] Remove deprecated warn parameter from molecule tests This parameter was deprecated in Ansible 2.11 and removed in Ansible 2.12. --- molecule/default/prepare.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/molecule/default/prepare.yml b/molecule/default/prepare.yml index 529caa7..7ac592c 100644 --- a/molecule/default/prepare.yml +++ b/molecule/default/prepare.yml @@ -17,12 +17,10 @@ - name: Start syslog ansible.builtin.shell: cmd: service syslog-ng start - warn: no - name: Start cron ansible.builtin.shell: cmd: service cron start - warn: no # Use the shell call because the task sometimes has problems finding the service state # service: # name: cron