Skip to content

Commit 54d5ca4

Browse files
authored
Merge branch 'main' into devin/1760108720-add-lint-staged
2 parents 7ada5b8 + 4546946 commit 54d5ca4

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
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
@@ -93,6 +93,9 @@ jobs:
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

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
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: |

src/kernels/deepnote/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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';
158158
export 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`;
159159
export const DEEPNOTE_DEFAULT_PORT = 8888;
160160
export const DEEPNOTE_NOTEBOOK_TYPE = 'deepnote';

tsconfig.base.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@
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
}

0 commit comments

Comments
 (0)