Skip to content

Commit

Permalink
Update yamlfix to 1.17.0
Browse files Browse the repository at this point in the history
- Upgrade `python` to version 3.12.6 in Dockerfile and .tool-versions
- Upgrade `yamlfix` to version 1.17.0 in requirements.txt
- Remove `maison` from requirements.txt
- Update dependabot.yml configuration
  • Loading branch information
otherguy committed Sep 30, 2024
1 parent 7ce9d14 commit 30cc1d4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
version: 2
updates:

Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python 3.12.6
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.11.3-slim
FROM python:3.12.6-slim

WORKDIR /workdir

# Install
COPY requirements.txt .
RUN pip install -r requirements.txt \
RUN pip install --no-cache-dir -r requirements.txt \
&& rm requirements.txt

# Build arguments
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
yamlfix==1.9.0
maison==2.0.0
yamlfix==1.17.0

0 comments on commit 30cc1d4

Please sign in to comment.