File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 9393 name : Build & Test
9494 runs-on : ubuntu-latest
9595 timeout-minutes : 15
96+ permissions :
97+ id-token : write
98+ contents : read
9699 steps :
97100 - name : Checkout
98101 uses : actions/checkout@v5
@@ -121,16 +124,16 @@ jobs:
121124 - name : Upload coverage to Codecov
122125 uses : codecov/codecov-action@v5
123126 with :
124- token : ${{ secrets.CODECOV_TOKEN }}
127+ use_oidc : true
125128 files : coverage/lcov.info
126129 fail_ci_if_error : true
127130
128131 - name : Upload test results to Codecov
129132 if : ' !cancelled()'
130133 uses : codecov/test-results-action@v1
131134 with :
132- token : ${{ secrets.CODECOV_TOKEN }}
133- files : test-report .xml
135+ use_oidc : true
136+ files : test-results .xml
134137 fail_ci_if_error : true
135138
136139 - name : Check dependencies
Original file line number Diff line number Diff line change 7979 continue-on-error : true
8080
8181 - name : Install uv
82- uses : astral-sh/setup-uv@v6
82+ uses : astral-sh/setup-uv@v7
8383
8484 - name : Setup Venv
8585 run : |
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ export interface IDeepnoteKernelAutoSelector {
154154 ensureKernelSelected ( notebook : vscode . NotebookDocument , token ?: vscode . CancellationToken ) : Promise < void > ;
155155}
156156
157- export const DEEPNOTE_TOOLKIT_VERSION = '0.2.30.post23 ' ;
157+ export const DEEPNOTE_TOOLKIT_VERSION = '0.2.30.post30 ' ;
158158export const DEEPNOTE_TOOLKIT_WHEEL_URL = `https://deepnote-staging-runtime-artifactory.s3.amazonaws.com/deepnote-toolkit-packages/${ DEEPNOTE_TOOLKIT_VERSION } /deepnote_toolkit-${ DEEPNOTE_TOOLKIT_VERSION } -py3-none-any.whl` ;
159159export const DEEPNOTE_DEFAULT_PORT = 8888 ;
160160export const DEEPNOTE_NOTEBOOK_TYPE = 'deepnote' ;
You can’t perform that action at this time.
0 commit comments