Skip to content

Commit 3be3f00

Browse files
authored
Fix CI Failures (#472)
* bump-python-on-CI * fix-lint * use-ubuntu-latest
1 parent bca8978 commit 3be3f00

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions:
2020
jobs:
2121
analyze:
2222
name: Analyze
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-latest
2424

2525
strategy:
2626
fail-fast: false

.github/workflows/fix-license-header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
header-license-fix:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-latest
99

1010
permissions:
1111
contents: write

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest, windows-latest, macos-latest]
22-
python-version: ["3.8", "3.12"]
22+
python-version: ["3.9", "3.12"]
2323
include:
2424
- os: windows-latest
2525
python-version: "3.9"

jupyterlab_server/handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def get(
170170
page_config["treePath"] = tree_path
171171

172172
# Write the template with the config.
173-
tpl = self.render_template("index.html", page_config=page_config) # type:ignore[no-untyped-call]
173+
tpl = self.render_template("index.html", page_config=page_config)
174174
self.write(tpl)
175175

176176

0 commit comments

Comments
 (0)