Skip to content

Commit

Permalink
ci: fix devcontainer feature updates by dependabot (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers authored Sep 5, 2024
1 parent 6afa3f4 commit 6f14ee0
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 8 deletions.
19 changes: 19 additions & 0 deletions .devcontainer/cpp/devcontainer-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1": {
"version": "1.2.4",
"resolved": "ghcr.io/devcontainers/features/desktop-lite@sha256:3f1e02742f4eab98a798c4beb126eb467a6bd224857b6127050f0dc6e92eb310",
"integrity": "sha256:3f1e02742f4eab98a798c4beb126eb467a6bd224857b6127050f0dc6e92eb310"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "1.0.13",
"resolved": "ghcr.io/devcontainers/features/github-cli@sha256:13b301a039ce9e0bb07d45ea0c106c946cfff01c3b9844bbec6b0c7bacba8de3",
"integrity": "sha256:13b301a039ce9e0bb07d45ea0c106c946cfff01c3b9844bbec6b0c7bacba8de3"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "1.6.0",
"resolved": "ghcr.io/devcontainers/features/node@sha256:902b97a02d04ffd3404579d793f3e101d1126d4d198929196c5872ed75a6d351",
"integrity": "sha256:902b97a02d04ffd3404579d793f3e101d1126d4d198929196c5872ed75a6d351"
}
}
}
6 changes: 3 additions & 3 deletions .devcontainer/cpp/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
],
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1.2.4": {},
"ghcr.io/devcontainers/features/github-cli:1.0.13": {},
"ghcr.io/devcontainers/features/node:1.5.0": {}
"ghcr.io/devcontainers/features/desktop-lite:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {}
},
"postCreateCommand": "npm install && npx playwright install --with-deps",
"customizations": {
Expand Down
4 changes: 1 addition & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ updates:
schedule:
interval: weekly
- package-ecosystem: devcontainers
directories:
- .devcontainer/cpp
- .devcontainer/rust
directory: /
schedule:
interval: weekly
- package-ecosystem: npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Update Dependencies

on:
schedule:
- cron: "30 2 * * *"
- cron: "30 2 * * 0"
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
branch: feature/amp-devcontainer-${{ matrix.flavor }}/update-vscode-extensions
body: |
> [!NOTE]
> Before merging this PR, please conduct a manual test checking basic functionality of the updated plug-ins. There are no automated tests for the VS Code Extension updates.
> 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 }}
title: "chore(deps, ${{ matrix.flavor }}): update ${{ join(fromJson(steps.update-extensions.outputs.updated-dependencies), ', ') }}"
Expand Down

0 comments on commit 6f14ee0

Please sign in to comment.