Skip to content

Commit

Permalink
Merge pull request #282 from tisnik/list-outdated-dependencies
Browse files Browse the repository at this point in the history
List outdated dependencies for each PR
  • Loading branch information
tisnik authored Jan 17, 2025
2 parents b89e0d3 + 429f188 commit d8519f7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/outdated_dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: List outdated dependencies

on:
- push
- pull_request

jobs:
list_outdated_dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Check Python version
run: python --version
- name: PDM installation
run: pip install --user pdm
- name: List outdated dependencies
run: pdm outdated

0 comments on commit d8519f7

Please sign in to comment.