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:
2424
2525 steps :
2626 - name : Checkout
27- uses : actions/checkout@v3
27+ uses : actions/checkout@v4
28+ with :
29+ persist-credentials : false
2830
2931 - name : Initialize CodeQL
30- uses : github/codeql-action/init@v2
32+ uses : github/codeql-action/init@v3
3133 with :
3234 languages : ${{ matrix.language }}
3335 queries : +security-and-quality
3436
3537 - name : Autobuild
36- uses : github/codeql-action/autobuild@v2
38+ uses : github/codeql-action/autobuild@v3
3739
3840 - name : Perform CodeQL Analysis
39- uses : github/codeql-action/analyze@v2
41+ uses : github/codeql-action/analyze@v3
4042 with :
4143 category : " /language:${{ matrix.language }}"
Original file line number Diff line number Diff line change 11
22name : Validate Python Code
3+ permissions :
4+ contents : read
35
46on :
57 push :
2022 python-version : ["3.9", "3.10", "3.11"]
2123
2224 steps :
23- - uses : actions/checkout@v3
25+ - uses : actions/checkout@v4
26+ with :
27+ persist-credentials : false
2428 - name : Set up Python ${{ matrix.python-version }}
25- uses : actions/setup-python@v3
29+ uses : actions/setup-python@v5
2630 with :
2731 python-version : ${{ matrix.python-version }}
2832
6468 python-version : ["3.9", "3.10", "3.11"]
6569
6670 steps :
67- - uses : actions/checkout@v3
71+ - uses : actions/checkout@v4
72+ with :
73+ persist-credentials : false
6874 - name : Set up Python ${{ matrix.python-version }}
69- uses : actions/setup-python@v3
75+ uses : actions/setup-python@v5
7076 with :
7177 python-version : ${{ matrix.python-version }}
7278
Original file line number Diff line number Diff line change 11# matplotview
2- #### A library for creating lightweight views of matplotlib axes.
2+ #### A small library for creating lightweight views of matplotlib axes.
33
44matplotview provides a simple interface for creating "views" of matplotlib
55axes, providing a simple way of displaying overviews and zoomed views of
You can’t perform that action at this time.
0 commit comments