File tree 2 files changed +12
-7
lines changed
2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 6
6
- cron : ' 0 0 1 * *'
7
7
workflow_dispatch :
8
8
9
+ permissions :
10
+ contents : read
11
+
9
12
jobs :
10
13
update-actions :
11
14
runs-on : ubuntu-latest
15
+ permissions :
16
+ contents : write
17
+ pull-requests : write
12
18
steps :
13
- - name : checkout
14
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
19
+ - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
15
20
- name : Setup python
16
21
uses : actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
17
22
with :
18
23
python-version : ' 3.8'
19
24
- name : install dependencies
20
- run : pip install requests schema PyYAML click click_log beautifulsoup4
25
+ run : |
26
+ pip install -r requirements.txt
27
+ pip install click_log
21
28
- name : install policy_sentry
22
29
run : echo "PYTHONPATH=$(pwd)" >> "$GITHUB_ENV"
23
30
- name : Run initialize
@@ -48,12 +55,10 @@ jobs:
48
55
needs : update-actions
49
56
steps :
50
57
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
51
-
52
58
- name : Setup Python
53
59
uses : actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
54
60
with :
55
61
python-version : ' 3.8'
56
-
57
62
- name : Install dependencies
58
63
run : |
59
64
pip install -r requirements.txt
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ click==8.1.7
4
4
beautifulsoup4 == 4.12.3
5
5
requests == 2.32.3
6
6
# Config files and schema validation
7
- PyYAML == 6.0.1
7
+ PyYAML == 6.0.2
8
8
schema == 0.7.7
9
9
# IAM DB
10
- orjson == 3.10.6
10
+ orjson == 3.10.7
You can’t perform that action at this time.
0 commit comments