Skip to content

Commit

Permalink
Merge pull request #85 from saadmk11/pydantic-v2
Browse files Browse the repository at this point in the history
Manage Dependencies with pip-tools and Migrate to Pydantic V2
  • Loading branch information
saadmk11 authored Aug 6, 2023
2 parents e60d25a + d1ec382 commit 2854367
Show file tree
Hide file tree
Showing 6 changed files with 391 additions and 49 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
groups:
dependencies:
patterns:
- "*"
schedule:
interval: "monthly"
20 changes: 20 additions & 0 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test Docker Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build Docker Image
run: docker build -t github-actions-version-updater:${{ github.sha }} .
7 changes: 7 additions & 0 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
packaging==21.3

PyYAML
requests
github-action-utils
pydantic
pydantic-settings
Loading

0 comments on commit 2854367

Please sign in to comment.