Skip to content

Commit 4f7eca2

Browse files
committed
ci: additional fixes
1 parent 093d594 commit 4f7eca2

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/update-dependencies.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
name: Update APT Dependencies (🍨 ${{ matrix.flavor }})
1515
runs-on: ubuntu-latest
1616
strategy:
17+
fail-fast: false
1718
matrix:
1819
flavor: ["base", "cpp", "rust"]
1920
# Using our own container is required since we need all package sources
@@ -32,7 +33,7 @@ jobs:
3233
- uses: ./.github/actions/update-apt-packages
3334
id: update-packages
3435
with:
35-
input-file: .devcontainer/${{ matrix.flavor }}/apt-requirements{,-*}.json
36+
input-file: .devcontainer/${{ matrix.flavor }}/apt-requirements*.json
3637
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
3738
id: token
3839
if: github.event_name != 'pull_request'
@@ -53,6 +54,7 @@ jobs:
5354
name: Update VS Code Extensions (🍨 ${{ matrix.flavor }}, ${{ matrix.file }})
5455
runs-on: ubuntu-latest
5556
strategy:
57+
fail-fast: false
5658
matrix:
5759
flavor: ["cpp", "rust"]
5860
file: ["devcontainer-metadata.json", "devcontainer.json"]
@@ -75,8 +77,10 @@ jobs:
7577
echo "> [!NOTE]"
7678
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."
7779
echo ""
78-
echo "${{ steps.update-extensions.outputs.markdown-summary }}"
80+
echo "$MARKDOWN_SUMMARY"
7981
} >> pull-request-body.md
82+
env:
83+
MARKDOWN_SUMMARY: ${{ steps.update-extensions.outputs.markdown-summary }}
8084
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
8185
id: token
8286
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)