Skip to content

Commit a9212b8

Browse files
Merge pull request #2 from source-foundry/update-dependencies
Dependency updates
2 parents 2296210 + 19bcd35 commit a9212b8

File tree

6 files changed

+23
-25
lines changed

6 files changed

+23
-25
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v2
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v2
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v2

.github/workflows/publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.9]
15+
python-version: ["3.11"]
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies

.github/workflows/py-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: [3.6, 3.7, 3.8, 3.9]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Display Python version & architecture
@@ -26,7 +26,7 @@ jobs:
2626
pip install --upgrade pip
2727
echo "::set-output name=dir::$(pip cache dir)"
2828
- name: pip cache
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: ${{ steps.pip-cache.outputs.dir }}
3232
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/py-coverage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
11+
python-version: ["3.11"]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Display Python version & architecture
@@ -26,7 +26,7 @@ jobs:
2626
pip install --upgrade pip
2727
echo "::set-output name=dir::$(pip cache dir)"
2828
- name: pip cache
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: ${{ steps.pip-cache.outputs.dir }}
3232
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -45,7 +45,7 @@ jobs:
4545
- name: Generate coverage report
4646
run: |
4747
pip install --upgrade coverage
48-
coverage run --source fontsize -m py.test
48+
coverage run --source fontsize -m pytest
4949
coverage report -m
5050
coverage xml
5151
- name: Upload coverage to Codecov

.github/workflows/py-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
11+
python-version: ["3.11"]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install Python testing dependencies

requirements.txt

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.10
33
# To update, run:
44
#
5-
# pip-compile requirements.in
5+
# pip-compile
66
#
77
brotli==1.0.9
88
# via -r requirements.in
9-
colorama==0.4.4
10-
# via rich
119
commonmark==0.9.1
1210
# via rich
13-
fonttools==4.23.0
11+
fonttools==4.38.0
1412
# via -r requirements.in
15-
pygments==2.9.0
13+
pygments==2.13.0
1614
# via rich
17-
rich==10.2.0
15+
rich==12.6.0
1816
# via -r requirements.in

0 commit comments

Comments
 (0)