Skip to content

Commit 96945ae

Browse files
authored
Merge pull request #817 from jupyterlab/use-different-action-for-conda
Use different conda action
2 parents ca3d3cc + 181c19f commit 96945ae

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/publish.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,26 @@ jobs:
2121

2222
name: '${{ matrix.cfg.platform_name }} installer'
2323
runs-on: ${{ matrix.cfg.os }}
24+
defaults:
25+
run:
26+
# needed for conda to work
27+
shell: bash -el {0}
2428

2529
steps:
2630
- uses: actions/checkout@v4
27-
- uses: s-weigand/setup-conda@v1
31+
- uses: conda-incubator/setup-miniconda@v3
32+
with:
33+
auto-update-conda: true
34+
auto-activate-base: true
35+
activate-environment: ""
36+
channels: conda-forge
37+
2838
- run: conda install --file ./workflow_env/conda-${{ matrix.cfg.build_platform }}.lock -y
2939

3040
- name: Install node
3141
uses: actions/setup-node@v4
3242
with:
33-
node-version: '14.x'
43+
node-version: '20.x'
3444
cache: 'yarn'
3545

3646
- name: Install dependencies

0 commit comments

Comments
 (0)