Skip to content

Commit 6a38fdb

Browse files
authored
Merge branch 'main' into dependabot/pip/mypy-0.971
2 parents 1a9c746 + 5d94ab4 commit 6a38fdb

File tree

5 files changed

+122
-85
lines changed

5 files changed

+122
-85
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v3
2727
- name: Setup Python 3.9
28-
uses: actions/setup-python@v4.0.0
28+
uses: actions/setup-python@v4.2.0
2929
with:
3030
python-version: 3.9
3131
#----------------------------------------------
@@ -97,7 +97,7 @@ jobs:
9797
- name: Checkout
9898
uses: actions/checkout@v3
9999
- name: Setup Python ${{ matrix.pyver }}
100-
uses: actions/setup-python@v4.0.0
100+
uses: actions/setup-python@v4.2.0
101101
with:
102102
python-version: ${{ matrix.pyver }}
103103
#----------------------------------------------
@@ -158,7 +158,7 @@ jobs:
158158
- name: Checkout
159159
uses: actions/checkout@v3
160160
- name: Setup Python 3.9
161-
uses: actions/setup-python@v4.0.0
161+
uses: actions/setup-python@v4.2.0
162162
with:
163163
python-version: 3.9
164164
- name: Install Poetry

.github/workflows/codeql.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [ "main" ]
9+
schedule:
10+
- cron: '40 4 * * 4'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
permissions:
17+
actions: read
18+
contents: read
19+
security-events: write
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
language: [ 'python' ]
25+
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v3
29+
30+
# Initializes the CodeQL tools for scanning.
31+
- name: Initialize CodeQL
32+
uses: github/codeql-action/init@v2
33+
with:
34+
languages: ${{ matrix.language }}
35+
36+
- name: Perform CodeQL Analysis
37+
uses: github/codeql-action/analyze@v2

.github/workflows/spellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: Checkout
99
uses: actions/checkout@v3
1010
- name: Check Spelling
11-
uses: rojopolis/spellcheck-github-actions@0.23.0
11+
uses: rojopolis/spellcheck-github-actions@0.26.0
1212
with:
1313
config_path: .github/spellcheck-settings.yml
1414
task_name: Markdown

0 commit comments

Comments
 (0)