Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 5, 2024
1 parent 150e6bb commit 841ab5b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/asan.yml
Expand Up @@ -17,12 +17,12 @@ jobs:
run: |
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
submodules: true

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build_wheels.yml
Expand Up @@ -27,18 +27,18 @@ jobs:
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
- name: Check out
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm

- name: Install Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'

- name: Build wheel (only macosx_universal2)
if: matrix.os == 'macos-latest'
uses: pypa/cibuildwheel@v2.16.1
uses: pypa/cibuildwheel@v2.17.0
with:
output-dir: dist
env:
Expand All @@ -47,7 +47,7 @@ jobs:
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'"

- name: Build wheel (except macosx_universal2)
uses: pypa/cibuildwheel@v2.16.1
uses: pypa/cibuildwheel@v2.17.0
with:
output-dir: dist
env:
Expand All @@ -70,7 +70,7 @@ jobs:
python -m build --sdist
- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheelstorage
path: ./dist/*
Expand All @@ -96,7 +96,7 @@ jobs:
shell: bash

- name: Download release assets
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheelstorage
path: dist
Expand All @@ -108,7 +108,7 @@ jobs:
password: ${{ secrets.pypi_password }}

- name: Create GitHub Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Install Dependencies (python)
if: ${{ matrix.language == 'python' }}
Expand All @@ -48,7 +48,7 @@ jobs:
export PATH="$HOME/.local/bin:$PATH" && echo "PATH=$PATH" >> $GITHUB_ENV
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config: |
Expand All @@ -64,14 +64,14 @@ jobs:

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

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

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"
4 changes: 2 additions & 2 deletions .github/workflows/run_cvg.yml
Expand Up @@ -30,12 +30,12 @@ jobs:
run: |
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
- name: Check out
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm

- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.8"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testpythonpackage.yml
Expand Up @@ -51,12 +51,12 @@ jobs:
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
- name: Check out
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Expand Up @@ -2,11 +2,11 @@
# we want to have control over the version and guarantee that the XML output
# of our tools is stable
# NOTE: hard-pinning (==) here gets relaxed to >= in setup.py
lxml==4.9.3
lxml==5.2.1
booleanOperations==0.9.0
defcon[lxml,pens]==0.10.3
fontMath==0.9.3
fontTools[unicode,woff,lxml,ufo]==4.43.0
tqdm==4.66.1
fontTools[unicode,woff,lxml,ufo]==4.51.0
tqdm==4.66.2
ufonormalizer==0.6.1
ufoProcessor==1.9.0

0 comments on commit 841ab5b

Please sign in to comment.