-
-
Notifications
You must be signed in to change notification settings - Fork 3
122 lines (103 loc) · 3.44 KB
/
dependencies.yml
File metadata and controls
122 lines (103 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: Dependency Management
on:
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
pull_request:
paths:
- 'pyproject.toml'
- 'poetry.lock'
permissions:
contents: read
jobs:
dependency-review:
name: Dependency Review
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Dependency Review
uses: actions/dependency-review-action@v5
with:
fail-on-severity: critical
fail-on-scopes: runtime
vulnerability-check: true
update-dependencies:
name: Update Dependencies
runs-on: ubuntu-latest
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
cache: pip
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcairo2-dev libgirepository1.0-dev gir1.2-gtk-3.0
- name: Install Poetry
run: |
pip install poetry
poetry config virtualenvs.create false
- name: Update Poetry Lock File
run: poetry lock
- name: Run Comprehensive Dependency Tests
id: dependency-tests
run: |
# Install dependencies
poetry install
# Run the comprehensive dependency test script
python test_dependencies.py --ci
if [ $? -ne 0 ]; then
echo "Dependency tests failed. Aborting."
echo "dependency_tests_passed=false" >> $GITHUB_OUTPUT
exit 1
else
echo "dependency_tests_passed=true" >> $GITHUB_OUTPUT
fi
- name: Run Project Tests
if: steps.dependency-tests.outputs.dependency_tests_passed == 'true'
run: |
poetry run pytest
- name: Check for Changes
id: git-diff
run: |
if git diff --quiet poetry.lock; then
echo "No changes detected in poetry.lock"
echo "changed=false" >> $GITHUB_OUTPUT
else
echo "Changes detected in poetry.lock"
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Create PR if Changes Detected
if: steps.git-diff.outputs.changed == 'true'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Setup git
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
# Create branch
BRANCH="deps/update-dependencies-$(date +%Y%m%d)"
git checkout -b ${BRANCH}
# Commit changes
git add poetry.lock
git commit -m "chore: update dependencies"
# Push changes
git push origin ${BRANCH}
# Create PR
gh pr create --title "chore: Update dependencies" \
--body "This PR updates the Poetry lock file to reflect the latest compatible versions of dependencies." \
--label "dependencies,automation" \
--base main \
--head ${BRANCH}