Skip to content

Commit 1d5a962

Browse files
authored
Merge pull request #276 from DigitalSlideArchive/fix-ci_release
Use correct node version and enable corepack
2 parents 1cbdb8d + 8a54d7f commit 1d5a962

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
python-version: "3.11"
3030
- name: Set up Node.js
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: "20"
3434
- name: Enable Corepack

.github/workflows/release.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ jobs:
2525
uses: actions/setup-python@v5
2626
with:
2727
python-version: "3.11"
28+
- name: Set up Node.js
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: "20"
32+
- name: Enable Corepack
33+
run: |
34+
corepack enable
2835
- name: Install tox
2936
run: |
3037
pip install --upgrade pip

0 commit comments

Comments
 (0)