Skip to content

Commit 4848072

Browse files
pin cli to 0.14.1
1 parent c7474be commit 4848072

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
2020
"ghcr.io/devcontainers/features/azure-cli:1": {}
2121
},
22-
"postCreateCommand": "npm install -g @devcontainers/cli"
22+
"postCreateCommand": "npm install -g @devcontainers/cli@0.14.1"
2323
}

.github/actions/smoke-test/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55

66
export DOCKER_BUILDKIT=1
77
echo "(*) Installing @devcontainer/cli"
8-
npm install -g @devcontainers/cli
8+
npm install -g @devcontainers/cli@0.14.1
99

1010
echo "(*) Building image - ${IMAGE}"
1111
id_label="test-container=${IMAGE}"

.github/workflows/push-again.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
# Setup build CLI
6464
cd "$GITHUB_WORKSPACE/ref"
6565
yarn install
66-
npm install -g @devcontainers/cli
66+
npm install -g @devcontainers/cli@0.14.1
6767
6868
# Go to the release, symlink the build tool from ref since this is the version for the workflow
6969
cd "$GITHUB_WORKSPACE/release"

.github/workflows/push-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
5353
# Build and push dev images
5454
yarn install
55-
npm install -g @devcontainers/cli
55+
npm install -g @devcontainers/cli@0.14.1
5656
GIT_BRANCH=$(echo "${{ github.ref }}" | grep -oP 'refs/(heads|tags)/\K(.+)')
5757
if [ "$GIT_BRANCH" == "" ]; then
5858
GIT_BRANCH=main

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
5757
# Build and push images
5858
yarn install
59-
npm install -g @devcontainers/cli
59+
npm install -g @devcontainers/cli@0.14.1
6060
build/vscdc push --page ${{ matrix.page }} \
6161
--pageTotal ${{ matrix.page-total }} \
6262
--release ${{ steps.get_tag_name.outputs.tag }} \

0 commit comments

Comments
 (0)