Skip to content

Commit 1b53b49

Browse files
''Merge branch 'main' into develop
Merge recent PRs
2 parents 9c059cb + a793210 commit 1b53b49

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

.github/workflows/codeql.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }}"

.github/workflows/pytest.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11

22
name: Validate Python Code
3+
permissions:
4+
contents: read
35

46
on:
57
push:
@@ -20,9 +22,11 @@ jobs:
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

@@ -64,9 +68,11 @@ jobs:
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# matplotview
2-
#### A library for creating lightweight views of matplotlib axes.
2+
#### A small library for creating lightweight views of matplotlib axes.
33

44
matplotview provides a simple interface for creating "views" of matplotlib
55
axes, providing a simple way of displaying overviews and zoomed views of

0 commit comments

Comments
 (0)