-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update github actions #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,27 +26,27 @@ jobs: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | ||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 | ||
| uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: Summary of breaking changes from actions/setup-node v5 → v6:
Sources:
References: 🏁 Script executed: cat -n .github/workflows/publish-release.ymlRepository: deepnote/jupyterlab-deepnote Length of output: 3182 Remove Line 37 uses the deprecated 🤖 Prompt for AI Agents |
||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| registry-url: 'https://npm.pkg.github.com' | ||
| scope: '@deepnote' | ||
| always-auth: true | ||
|
|
||
| - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@d72f5cb72b472c1e59036840891e918c9bda4dae # v1 | ||
| - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@d734fad2dc3aadbe56a5fd530037656e770e1a8d # v1 | ||
|
|
||
| - uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2 | ||
| - uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2 | ||
| id: app-token | ||
| with: | ||
| app-id: ${{ vars.APP_ID }} | ||
| private-key: ${{ secrets.APP_PRIVATE_KEY }} | ||
|
|
||
| - name: Populate Release | ||
| id: populate-release | ||
| uses: jupyter-server/jupyter_releaser/.github/actions/populate-release@6accaa3c07b69acaa1e14e00ba138133d8cbe879 # v2 | ||
| uses: jupyter-server/jupyter_releaser/.github/actions/populate-release@c3dbeeaf282bb9cb3888ca42ac56f11cef0e7b8d # v2 | ||
| with: | ||
| token: ${{ steps.app-token.outputs.token }} | ||
| branch: ${{ github.event.inputs.branch }} | ||
|
|
@@ -57,7 +57,7 @@ jobs: | |
| id: finalize-release | ||
| env: | ||
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| uses: jupyter-server/jupyter_releaser/.github/actions/finalize-release@6accaa3c07b69acaa1e14e00ba138133d8cbe879 # v2 | ||
| uses: jupyter-server/jupyter_releaser/.github/actions/finalize-release@c3dbeeaf282bb9cb3888ca42ac56f11cef0e7b8d # v2 | ||
| with: | ||
| token: ${{ steps.app-token.outputs.token }} | ||
| release_url: ${{ steps.populate-release.outputs.release_url }} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove
always-auth: true— deprecated in actions/setup-node v6.Line 29 uses the
always-authinput, which was removed in v6. This will cause workflow failures. Remove the line; thecache,node-version,registry-url, andscopeinputs function correctly in v6.Apply this diff to remove the deprecated input:
- name: Setup Node.js uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6 with: cache: 'npm' node-version: ${{ env.NODE_VERSION }} registry-url: 'https://npm.pkg.github.com' scope: '@deepnote' - always-auth: true📝 Committable suggestion
🤖 Prompt for AI Agents