File tree Expand file tree Collapse file tree 4 files changed +24
-9
lines changed Expand file tree Collapse file tree 4 files changed +24
-9
lines changed Original file line number Diff line number Diff line change
1
+
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /" # Location of your workflow files
6
+ schedule :
7
+ interval : " weekly" # Options: daily, weekly, monthly
Original file line number Diff line number Diff line change @@ -24,18 +24,20 @@ jobs:
24
24
25
25
steps :
26
26
- name : Checkout
27
- uses : actions/checkout@v3
27
+ uses : actions/checkout@v4
28
+ with :
29
+ persist-credentials : false
28
30
29
31
- name : Initialize CodeQL
30
- uses : github/codeql-action/init@v2
32
+ uses : github/codeql-action/init@v3
31
33
with :
32
34
languages : ${{ matrix.language }}
33
35
queries : +security-and-quality
34
36
35
37
- name : Autobuild
36
- uses : github/codeql-action/autobuild@v2
38
+ uses : github/codeql-action/autobuild@v3
37
39
38
40
- name : Perform CodeQL Analysis
39
- uses : github/codeql-action/analyze@v2
41
+ uses : github/codeql-action/analyze@v3
40
42
with :
41
43
category : " /language:${{ matrix.language }}"
Original file line number Diff line number Diff line change 1
1
2
2
name : Validate Python Code
3
+ permissions :
4
+ contents : read
3
5
4
6
on :
5
7
push :
20
22
python-version : ["3.9", "3.10", "3.11"]
21
23
22
24
steps :
23
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
+ with :
27
+ persist-credentials : false
24
28
- name : Set up Python ${{ matrix.python-version }}
25
- uses : actions/setup-python@v3
29
+ uses : actions/setup-python@v5
26
30
with :
27
31
python-version : ${{ matrix.python-version }}
28
32
64
68
python-version : ["3.9", "3.10", "3.11"]
65
69
66
70
steps :
67
- - uses : actions/checkout@v3
71
+ - uses : actions/checkout@v4
72
+ with :
73
+ persist-credentials : false
68
74
- name : Set up Python ${{ matrix.python-version }}
69
- uses : actions/setup-python@v3
75
+ uses : actions/setup-python@v5
70
76
with :
71
77
python-version : ${{ matrix.python-version }}
72
78
Original file line number Diff line number Diff line change 1
1
# matplotview
2
- #### A library for creating lightweight views of matplotlib axes.
2
+ #### A small library for creating lightweight views of matplotlib axes.
3
3
4
4
matplotview provides a simple interface for creating "views" of matplotlib
5
5
axes, providing a simple way of displaying overviews and zoomed views of
You can’t perform that action at this time.
0 commit comments