chore(deps): update python docker tag to v3.12.1 (#23)
ci/woodpecker/push/lint_general Pipeline was successful Details

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| python | minor | `3.11.6-bullseye` -> `3.12.1-bullseye` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEwMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Richard Attermeyer <richard.attermeyer@gmail.com>
Reviewed-on: #23
Co-authored-by: Renovate Bot <renovatebot@demo.rattermeyer.de>
Co-committed-by: Renovate Bot <renovatebot@demo.rattermeyer.de>
pull/29/head
Renovate Bot 2024-01-28 20:59:36 +00:00 committed by fjadmin
parent d520e82699
commit a671b9a7e1
2 changed files with 8 additions and 1 deletions

View File

@ -25,24 +25,28 @@ steps:
"lint:style": "lint:style":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm run prettier - pnpm run prettier
directory: frontend directory: frontend
"lint:analyze": "lint:analyze":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm run lint - pnpm run lint
directory: frontend directory: frontend
"build:frontend": "build:frontend":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm run build - pnpm run build
directory: frontend directory: frontend
"build:tsc": "build:tsc":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- pnpm add typescript - pnpm add typescript
- pnpm run typecheck - pnpm run typecheck
@ -50,6 +54,7 @@ steps:
"analyze:sbom": "analyze:sbom":
image: *frontend_image image: *frontend_image
depends_on: ["prepare:frontend"]
commands: commands:
- rm -rf node_modules - rm -rf node_modules
- npm install - npm install
@ -58,6 +63,7 @@ steps:
"deploy:frontend": "deploy:frontend":
image: alpine:latest image: alpine:latest
depends_on: ["build:frontend"]
commands: commands:
- echo "deploy frontend" - echo "deploy frontend"
- env - env

View File

@ -14,6 +14,7 @@ steps:
"lint:commitlint": "lint:commitlint":
image: node:lts-slim image: node:lts-slim
depends_on: ["prepare:commitlint"]
commands: commands:
- npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest - npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest
- cat commitlint.txt - cat commitlint.txt
@ -22,7 +23,7 @@ steps:
- branch: [main, dev] - branch: [main, dev]
event: push event: push
"lint:precommit": "lint:precommit":
image: python:3.11.6-bullseye image: python:3.12.1-bullseye
commands: commands:
- pip install pre-commit - pip install pre-commit
- pre-commit install - pre-commit install