File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 8181 uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
8282
8383 - name : Install qlty
84- uses : qltysh/qlty-action/install@06730ef41b86b073c3813c0fc07a0c734980ce5d
84+ uses : qltysh/qlty-action/install@a2277a908db90c4c868832fb9204521fb940fdb4
8585
8686 - name : Run qlty check
8787 run : qlty check
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' ;
Original file line number Diff line number Diff line change 1818
1919 // Strictness
2020 "strict" : true ,
21+ "forceConsistentCasingInFileNames" : true ,
2122 "noImplicitAny" : true ,
2223 "noImplicitThis" : true ,
2324 "noUnusedLocals" : true ,
2425 "noUnusedParameters" : true ,
2526 "noImplicitOverride" : true ,
2627 "noFallthroughCasesInSwitch" : true ,
28+ "skipLibCheck" : true ,
2729 "useUnknownInCatchVariables" : false ,
2830 "strictPropertyInitialization" : false
2931 }
You can’t perform that action at this time.
0 commit comments