From 2af5a141dc086e3bb2ee1c9669b993ca9e534dbc Mon Sep 17 00:00:00 2001 From: Lars Mikkelsen Date: Wed, 28 Jun 2023 14:45:04 +0200 Subject: [PATCH] chore(ci): fix npm package provenance (#27712) Issue number: N/A --------- ## What is the current behavior? Nightly build and release broken in #27711 due to missing shell property in GitHub Actions workflow. ## What is the new behavior? - Nightly build and release works. ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information --- .github/workflows/actions/publish-npm/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/actions/publish-npm/action.yml b/.github/workflows/actions/publish-npm/action.yml index 22baf5210b..fb0680d204 100644 --- a/.github/workflows/actions/publish-npm/action.yml +++ b/.github/workflows/actions/publish-npm/action.yml @@ -25,6 +25,7 @@ runs: # Provenance requires npm 9.5.0+ - name: Install latest npm run: npm install -g npm@latest + shell: bash # This ensures the local version of Lerna is installed # and that we do not use the global Lerna version - name: Install root dependencies