Skip to content

Commit bfb141d

Browse files
Fix CI workflow: use .nvmrc for Node version and pin setup-python to commit SHA
- Changed node-version from env.NODE_VERSION to node-version-file: '.nvmrc' to match other jobs - Pinned actions/setup-python@v5 to commit SHA a26af69be951a213d495a4c3e4e4022e16d87065 for supply-chain security Co-Authored-By: Filip Pyrek <[email protected]>
1 parent 925292a commit bfb141d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ jobs:
159159
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
160160
with:
161161
cache: 'npm'
162-
node-version: ${{ env.NODE_VERSION }}
162+
node-version-file: '.nvmrc'
163163
registry-url: 'https://npm.pkg.github.com'
164164
scope: '@deepnote'
165165

166166
- name: Setup Python
167-
uses: actions/setup-python@v5
167+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
168168
with:
169169
python-version: '3.12'
170170

0 commit comments

Comments
 (0)