Skip to content

Commit 507ee0d

Browse files
committed
Merge pull request #299 from openzim/fix_saxutils
2 parents 4a39e6b + 0536e40 commit 507ee0d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-and-run:
88
runs-on: ubuntu-22.04
99
steps:
10-
- uses: actions/checkout@v3.4.0
10+
- uses: actions/checkout@v4
1111
- name: Build image
1212
run: docker build . -t sotoki
1313
- run: mkdir -p output

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v3
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v2
36+
uses: github/codeql-action/autobuild@v3
3737
if: ${{ matrix.language == 'javascript' || matrix.language == 'python' }}
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v2
40+
uses: github/codeql-action/analyze@v3
4141
with:
4242
category: "/language:${{ matrix.language }}"

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Deploy Docker Image
1313
runs-on: ubuntu-22.04
1414
steps:
15-
- uses: actions/checkout@v3.4.0
15+
- uses: actions/checkout@v4
1616
- name: Build and push
1717
uses: openzim/docker-publish-action@v10
1818
with:

src/sotoki/utils/preparation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import os
1111
import re
1212
import pathlib
13-
import xml.sax
13+
import xml.sax.saxutils
1414
import subprocess
1515
from typing import Union
1616

0 commit comments

Comments
 (0)