Skip to content

Commit a487125

Browse files
authored
Merge pull request #1155 from gusthoff/topic/infrastructure/yarn/updates/20241226/node_22_upgrade
Infrastructure: upgrade to Node 22
2 parents f31af75 + ea3e415 commit a487125

File tree

7 files changed

+31
-867
lines changed

7 files changed

+31
-867
lines changed

.github/workflows/publish-learn-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
python-version: ['3.11']
12-
node-version: [20.x]
12+
node-version: [22.x]
1313

1414
steps:
1515
- name: Trigger publishing on learn-latest repo

.github/workflows/sphinx-books-tests.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version: ['3.11']
17-
node-version: [20.x]
17+
node-version: [22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/sphinx-content-tests.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version: ['3.11']
17-
node-version: [20.x]
17+
node-version: [22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/typescript-tests.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
python-version: ['3.11']
24-
node-version: [20.x]
24+
node-version: [22.x]
2525

2626
steps:
2727
- uses: actions/checkout@v4

Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $frontend = <<-SHELL
66
sed -i -e 's#security.ubuntu.com#old-releases.ubuntu.com#' /etc/apt/sources.list
77
88
# Enable the NodeSource repository
9-
curl -sL https://deb.nodesource.com/setup_20.x | bash -
9+
curl -sL https://deb.nodesource.com/setup_22.x | bash -
1010
1111
# Generate list of installed packages
1212
dpkg -l | awk '$1 == "ii" { printf "%s\\n", $2 }' > /vagrant/vm_apt_installed.txt
@@ -96,7 +96,7 @@ $epub = <<-SHELL
9696
sed -i -e 's#security.ubuntu.com#old-releases.ubuntu.com#' /etc/apt/sources.list
9797
9898
# Enable the NodeSource repository
99-
curl -sL https://deb.nodesource.com/setup_20.x | bash -
99+
curl -sL https://deb.nodesource.com/setup_22.x | bash -
100100
101101
# Generate list of installed packages
102102
dpkg -l | awk '$1 == "ii" { printf "%s\\n", $2 }' > /vagrant/vm_apt_installed.txt

frontend/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
"mocha": "^10.8.2",
5959
"mock-socket": "^9.3.1",
6060
"node-fetch": "^3.3.2",
61-
"node-sass": "^9.0.0",
6261
"nyc": "^17.1.0",
6362
"postcss": "^8.4.47",
6463
"postcss-loader": "^8.1.1",

0 commit comments

Comments
 (0)