mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
* Upgrade dotnet sdk to v6.0.415 * Update computed hashes * . * . --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Tingluo Huang <tingluohuang@github.com>
25 lines
632 B
JSON
25 lines
632 B
JSON
{
|
|
"name": "Actions Runner Devcontainer",
|
|
"image": "mcr.microsoft.com/devcontainers/base:focal",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
|
|
"ghcr.io/devcontainers/features/dotnet": {
|
|
"version": "6.0.415"
|
|
},
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"version": "16"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-azuretools.vscode-docker",
|
|
"ms-dotnettools.csharp",
|
|
"eamodio.gitlens"
|
|
]
|
|
}
|
|
},
|
|
"postCreateCommand": "dotnet restore src/Test && dotnet restore src/Runner.PluginHost",
|
|
"remoteUser": "vscode"
|
|
}
|