From a671b9a7e11387f04e8659be3952c50a61147996 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 28 Jan 2024 20:59:36 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.12.1 (#23) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: Richard Attermeyer Reviewed-on: https://git.demo.rattermeyer.de/fjadmin/ci-demo-2/pulls/23 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .woodpecker/.frontend.yml | 6 ++++++ .woodpecker/.lint_general.yml | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.woodpecker/.frontend.yml b/.woodpecker/.frontend.yml index 167d368..73ab51b 100644 --- a/.woodpecker/.frontend.yml +++ b/.woodpecker/.frontend.yml @@ -25,24 +25,28 @@ steps: "lint:style": image: *frontend_image + depends_on: ["prepare:frontend"] commands: - pnpm run prettier directory: frontend "lint:analyze": image: *frontend_image + depends_on: ["prepare:frontend"] commands: - pnpm run lint directory: frontend "build:frontend": image: *frontend_image + depends_on: ["prepare:frontend"] commands: - pnpm run build directory: frontend "build:tsc": image: *frontend_image + depends_on: ["prepare:frontend"] commands: - pnpm add typescript - pnpm run typecheck @@ -50,6 +54,7 @@ steps: "analyze:sbom": image: *frontend_image + depends_on: ["prepare:frontend"] commands: - rm -rf node_modules - npm install @@ -58,6 +63,7 @@ steps: "deploy:frontend": image: alpine:latest + depends_on: ["build:frontend"] commands: - echo "deploy frontend" - env diff --git a/.woodpecker/.lint_general.yml b/.woodpecker/.lint_general.yml index bb43f91..6dd6d3a 100644 --- a/.woodpecker/.lint_general.yml +++ b/.woodpecker/.lint_general.yml @@ -14,6 +14,7 @@ steps: "lint:commitlint": image: node:lts-slim + depends_on: ["prepare:commitlint"] commands: - npm install --save-dev conventional-changelog-conventionalcommits @commitlint/config-conventional commitlint@latest - cat commitlint.txt @@ -22,7 +23,7 @@ steps: - branch: [main, dev] event: push "lint:precommit": - image: python:3.11.6-bullseye + image: python:3.12.1-bullseye commands: - pip install pre-commit - pre-commit install