From e56fa4e29d6945d80127bee3b9230dbe11a56185 Mon Sep 17 00:00:00 2001 From: UIS DevOps Renovate Bot <devops+renovatebot@uis.cam.ac.uk> Date: Tue, 15 Apr 2025 19:29:50 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- template/.gitlab/webapp.gitlab-ci.yml | 4 ++-- template/.pre-commit-config.yaml | 6 +++--- template/Dockerfile | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/template/.gitlab/webapp.gitlab-ci.yml b/template/.gitlab/webapp.gitlab-ci.yml index c684452..27860d4 100644 --- a/template/.gitlab/webapp.gitlab-ci.yml +++ b/template/.gitlab/webapp.gitlab-ci.yml @@ -1,10 +1,10 @@ include: - project: "uis/devops/continuous-delivery/ci-templates" file: "/auto-devops/common-pipeline.yml" - ref: v6.7.3 + ref: v6.8.1 - project: "uis/devops/continuous-delivery/ci-templates" file: "/auto-devops/artifact-registry.yml" - ref: v6.7.3 + ref: v6.8.1 variables: DAST_DISABLED: "1" diff --git a/template/.pre-commit-config.yaml b/template/.pre-commit-config.yaml index 909b26e..2815de8 100644 --- a/template/.pre-commit-config.yaml +++ b/template/.pre-commit-config.yaml @@ -37,12 +37,12 @@ repos: - id: black - repo: https://github.com/PyCQA/isort - rev: 6.0.0 + rev: 6.0.1 hooks: - id: isort - repo: https://github.com/pycqa/flake8 - rev: 7.0.0 + rev: 7.2.0 hooks: - id: flake8 @@ -52,7 +52,7 @@ repos: - id: mypy - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook - rev: v9.21.0 + rev: v9.22.0 hooks: - id: commitlint stages: [commit-msg] diff --git a/template/Dockerfile b/template/Dockerfile index 9a0a3eb..da19f64 100644 --- a/template/Dockerfile +++ b/template/Dockerfile @@ -4,7 +4,7 @@ # If you change the version here, update pyproject.toml and the version used in # CI. We explicitly specify the platform here so that it matches the platform # used in deployment. -FROM registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/python:3.11-slim AS base +FROM registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/python:3.13-slim AS base # Some performance and disk-usage optimisations for Python within a docker container. ENV PYTHONUNBUFFERED=1 \ -- GitLab