Skip to content

Commit 62af0c5

Browse files
Update all dependencies
1 parent 150e6bb commit 62af0c5

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/asan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
run: |
1818
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
1919
20-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
20+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2121
with:
2222
submodules: true
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: 3.8
2828

.github/workflows/build_wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ jobs:
2727
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
2828
2929
- name: Check out
30-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
30+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3131
with:
3232
fetch-depth: 0 # unshallow fetch for setuptools-scm
3333

3434
- name: Install Python 3.9
35-
uses: actions/setup-python@v4
35+
uses: actions/setup-python@v5
3636
with:
3737
python-version: '3.9'
3838

3939
- name: Build wheel (only macosx_universal2)
4040
if: matrix.os == 'macos-latest'
41-
uses: pypa/cibuildwheel@v2.16.1
41+
uses: pypa/cibuildwheel@v2.17.0
4242
with:
4343
output-dir: dist
4444
env:
@@ -47,7 +47,7 @@ jobs:
4747
CIBW_ENVIRONMENT_MACOS: "CFLAGS='-arch arm64 -arch x86_64 -I/usr/include/libxml2' CXXFLAGS='-arch arm64 -arch x86_64' LDFLAGS='-arch arm64 -arch x86_64'"
4848

4949
- name: Build wheel (except macosx_universal2)
50-
uses: pypa/cibuildwheel@v2.16.1
50+
uses: pypa/cibuildwheel@v2.17.0
5151
with:
5252
output-dir: dist
5353
env:
@@ -70,7 +70,7 @@ jobs:
7070
python -m build --sdist
7171
7272
- name: Upload build artifacts
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: wheelstorage
7676
path: ./dist/*
@@ -96,7 +96,7 @@ jobs:
9696
shell: bash
9797

9898
- name: Download release assets
99-
uses: actions/download-artifact@v3
99+
uses: actions/download-artifact@v4
100100
with:
101101
name: wheelstorage
102102
path: dist
@@ -108,7 +108,7 @@ jobs:
108108
password: ${{ secrets.pypi_password }}
109109

110110
- name: Create GitHub Release
111-
uses: softprops/action-gh-release@v1
111+
uses: softprops/action-gh-release@v2
112112
env:
113113
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
114114
with:

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
33+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3434

3535
- name: Install Dependencies (python)
3636
if: ${{ matrix.language == 'python' }}
@@ -48,7 +48,7 @@ jobs:
4848
export PATH="$HOME/.local/bin:$PATH" && echo "PATH=$PATH" >> $GITHUB_ENV
4949
5050
- name: Initialize CodeQL
51-
uses: github/codeql-action/init@v2
51+
uses: github/codeql-action/init@v3
5252
with:
5353
languages: ${{ matrix.language }}
5454
config: |
@@ -64,14 +64,14 @@ jobs:
6464
6565

6666
- name: Autobuild
67-
uses: github/codeql-action/autobuild@v2
67+
uses: github/codeql-action/autobuild@v3
6868
if: ${{ matrix.language == 'python' }}
6969

7070
- name: Build cpp
7171
if: ${{ matrix.language == 'cpp' }}
7272
run: python3 setup.py build
7373

7474
- name: Perform CodeQL Analysis
75-
uses: github/codeql-action/analyze@v2
75+
uses: github/codeql-action/analyze@v3
7676
with:
7777
category: "/language:${{ matrix.language }}"

.github/workflows/run_cvg.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
run: |
3131
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
3232
- name: Check out
33-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
33+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3434
with:
3535
fetch-depth: 0 # unshallow fetch for setuptools-scm
3636

3737
- name: Set up Python 3.8
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: "3.8"
4141

.github/workflows/testpythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ jobs:
5151
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
5252
5353
- name: Check out
54-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
54+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
5555
with:
5656
fetch-depth: 0 # unshallow fetch for setuptools-scm
5757

5858
- name: Set up Python ${{ matrix.python-version }}
59-
uses: actions/setup-python@v4
59+
uses: actions/setup-python@v5
6060
with:
6161
python-version: ${{ matrix.python-version }}
6262

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# we want to have control over the version and guarantee that the XML output
33
# of our tools is stable
44
# NOTE: hard-pinning (==) here gets relaxed to >= in setup.py
5-
lxml==4.9.3
5+
lxml==5.1.0
66
booleanOperations==0.9.0
77
defcon[lxml,pens]==0.10.3
88
fontMath==0.9.3
9-
fontTools[unicode,woff,lxml,ufo]==4.43.0
10-
tqdm==4.66.1
9+
fontTools[unicode,woff,lxml,ufo]==4.49.0
10+
tqdm==4.66.2
1111
ufonormalizer==0.6.1
1212
ufoProcessor==1.9.0

0 commit comments

Comments
 (0)