Skip to content
Merged
Changes from 8 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9b26d6f
ci: fix updating apt dependencies
rjaegers Jan 30, 2026
7a3143f
ci: truncate release details for extension updates
rjaegers Jan 30, 2026
06c71b8
ci: fix script error
rjaegers Jan 30, 2026
041b38b
ci: minor script fixes
rjaegers Jan 30, 2026
03e6010
ci: more script fixes
rjaegers Jan 30, 2026
e67d908
ci: more fixing
rjaegers Jan 30, 2026
08cbea6
ci: minor refactor
rjaegers Jan 30, 2026
79511c9
ci: different strategy
rjaegers Jan 30, 2026
4e86f5c
ci: enable dry-run of update-dependencies jobs
rjaegers Jan 30, 2026
093d594
Update .github/workflows/update-dependencies.yml
rjaegers Jan 30, 2026
603c367
ci: revert copilot fix
rjaegers Jan 30, 2026
4f7eca2
ci: additional fixes
rjaegers Jan 30, 2026
c911e41
Merge branch 'ci/fix-update-dependencies' of https://github.com/phili…
rjaegers Jan 30, 2026
96018d6
ci: another another aproach
rjaegers Jan 30, 2026
a32cad4
ci: reduce script injection attack surface
rjaegers Jan 30, 2026
8132ded
ci: don't add files to the workspace
rjaegers Jan 30, 2026
f9114f4
chore(deps, cpp): update mull-19 (#1115)
philips-software-forest-releaser[bot] Jan 30, 2026
86a8ed8
Merge branch 'main' into ci/fix-update-dependencies
rjaegers Jan 30, 2026
cbf9234
Apply suggestion from @Copilot
rjaegers Jan 30, 2026
e612015
Apply suggestion from @rjaegers
rjaegers Jan 30, 2026
4c473df
ci: shorten job names somewhat
rjaegers Feb 2, 2026
0fca037
ci: processed review comment
rjaegers Feb 2, 2026
8e8c3ca
ci: use secure temp files
rjaegers Feb 2, 2026
d025582
ci: process more review comments
rjaegers Feb 2, 2026
adbd4a8
ci: switch to date based comparison for release notes
rjaegers Feb 2, 2026
770eb72
ci: give a visual cue of a dry-run
rjaegers Feb 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- uses: ./.github/actions/update-apt-packages
id: update-packages
with:
input-file: .devcontainer/${{ matrix.flavor }}/apt-requirements-*.json
input-file: .devcontainer/${{ matrix.flavor }}/apt-requirements*.json
Comment thread
rjaegers marked this conversation as resolved.
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
id: token
with:
Expand Down Expand Up @@ -67,6 +67,13 @@
id: update-extensions
with:
input-file: .devcontainer/${{ matrix.flavor }}/${{ matrix.file }}
- run: |
{
echo "> [!NOTE]"
echo "> Before merging this PR, please conduct a manual test checking basic functionality of the updated plug-ins. There are limited automated tests for the VS Code Extension updates."
echo ""
echo "${{ steps.update-extensions.outputs.markdown-summary }}"
Comment thread Fixed
Comment thread Fixed
} >> pull-request-body.md
Comment thread
rjaegers marked this conversation as resolved.
Outdated
Comment thread
rjaegers marked this conversation as resolved.
Outdated
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
id: token
with:
Expand All @@ -76,11 +83,7 @@
with:
commit-message: "Update ${{ join(fromJson(steps.update-extensions.outputs.updated-dependencies), ', ') }} in ${{ matrix.file }}"
branch: feature/amp-devcontainer-${{ matrix.flavor }}/update-vscode-extensions-${{ matrix.file }}
body: |
> [!NOTE]
> Before merging this PR, please conduct a manual test checking basic functionality of the updated plug-ins. There are limited automated tests for the VS Code Extension updates.

${{ steps.update-extensions.outputs.markdown-summary }}
body-path: pull-request-body.md
title: "chore(deps, ${{ matrix.flavor }}): update ${{ join(fromJson(steps.update-extensions.outputs.updated-dependencies), ', ') }} in ${{ matrix.file }}"
labels: dependencies,vscode-extensions
token: ${{ steps.token.outputs.token }}
Expand Down
Loading