diff --git a/.drone.jsonnet b/.drone.jsonnet index f6bf148..1601205 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 9423f18..5098e20 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 @@ -51,7 +51,7 @@ workspace: steps: - name: ansible-molecule - image: thegeeklab/molecule:3 + image: thegeeklab/molecule:4 commands: - molecule test -s centos7 environment: @@ -84,7 +84,7 @@ workspace: steps: - name: ansible-molecule - image: thegeeklab/molecule:3 + image: thegeeklab/molecule:4 commands: - molecule test -s rocky8 environment: @@ -182,6 +182,6 @@ depends_on: --- kind: signature -hmac: d92785e618ad06b751f30f08f279598a24acbf6536047bf1ee544b269c343f44 +hmac: bd3e6d51794100a3f09d836d4df35a31a0c50862eeac83f400c59b0e6ebfd430 ...