Skip to content

Commit 9b903ce

Browse files
authored
Merge branch 'main' into devin/1760109891-sync-tsconfig-strict-settings
2 parents b7daece + 75a4081 commit 9b903ce

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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';

0 commit comments

Comments
 (0)