We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb0bb9e commit 0606671Copy full SHA for 0606671
2 files changed
.github/dependabot.yml
@@ -15,6 +15,13 @@ updates:
15
schedule:
16
interval: weekly
17
open-pull-requests-limit: 10
18
+ ignore:
19
+ # See <https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore>
20
+ - dependency-name: python
21
+ update-types:
22
+ # Ignore major/minor to pin python 3.13.x in ./Dockerfile until cfn-lint is compatible
23
+ - "version-update:semver-major"
24
+ - "version-update:semver-minor"
25
- package-ecosystem: docker
26
directory: "/.github/dependencies/python312"
27
Dockerfile
@@ -2,7 +2,7 @@
2
3
FROM golang:1.25.4-bookworm AS golang
4
5
-FROM python:3.14.0-bookworm
+FROM python:3.13.11-bookworm
6
7
ARG PROJECT_NAME=tardigrade-ci
8
0 commit comments