From 8a4751a02a880a3946ff745f0054cb92e703242e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 21 Dec 2022 09:14:01 +0100 Subject: [PATCH] ci: switch to molecule v4 --- .drone.jsonnet | 8 ++++---- .drone.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index e3042b1..9c209de 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -15,18 +15,18 @@ local PipelineLinting = { }, { name: 'python-format', - image: 'python:3.10', + image: 'python:3.11', environment: { PY_COLORS: 1, }, commands: [ 'pip install -qq yapf', - '[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)', + '[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)', ], }, { name: 'python-flake8', - image: 'python:3.10', + image: 'python:3.11', environment: { PY_COLORS: 1, }, @@ -58,7 +58,7 @@ local PipelineDeployment(scenario='centos7') = { steps: [ { name: 'ansible-molecule', - image: 'thegeeklab/molecule:3', + image: 'thegeeklab/molecule:4', environment: { HCLOUD_TOKEN: { from_secret: 'hcloud_token' }, }, diff --git a/.drone.yml b/.drone.yml index 934d667..a3a61cb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,15 +13,15 @@ steps: - ansible-later - name: python-format - image: python:3.10 + image: python:3.11 commands: - pip install -qq yapf - - "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)" + - "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)" environment: PY_COLORS: 1 - name: python-flake8 - image: python:3.10 + image: python:3.11 commands: - pip install -qq flake8 - flake8 @@ -115,6 +115,6 @@ depends_on: --- kind: signature -hmac: 98ba4dfc028182d441f42d0682c91df6d810c9b0621817a78144803ab9277ecf +hmac: b54b3e4f244f9eb664042a6316f0cbd77b11338b248af0a19095c4884cb091a7 ...