Skip to content

Commit 0606671

Browse files
committed
Reverts python to 3.13.11 until cfn-lint is compatible with 3.14
1 parent bb0bb9e commit 0606671

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ updates:
1515
schedule:
1616
interval: weekly
1717
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"
1825
- package-ecosystem: docker
1926
directory: "/.github/dependencies/python312"
2027
schedule:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM golang:1.25.4-bookworm AS golang
44

5-
FROM python:3.14.0-bookworm
5+
FROM python:3.13.11-bookworm
66

77
ARG PROJECT_NAME=tardigrade-ci
88

0 commit comments

Comments
 (0)