Skip to content

Commit 2854367

Browse files
authored
Merge pull request #85 from saadmk11/pydantic-v2
Manage Dependencies with pip-tools and Migrate to Pydantic V2
2 parents e60d25a + d1ec382 commit 2854367

6 files changed

Lines changed: 391 additions & 49 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
groups:
6+
dependencies:
7+
patterns:
8+
- "*"
9+
schedule:
10+
interval: "monthly"
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test Docker Build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
test:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- name: Build Docker Image
20+
run: docker build -t github-actions-version-updater:${{ github.sha }} .

requirements.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
packaging==21.3
2+
3+
PyYAML
4+
requests
5+
github-action-utils
6+
pydantic
7+
pydantic-settings

0 commit comments

Comments
 (0)