Skip to content

Commit

Permalink
pin cli to 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
samruddhikhandale committed Sep 1, 2022
1 parent c7474be commit 4848072
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
"ghcr.io/devcontainers/features/azure-cli:1": {}
},
"postCreateCommand": "npm install -g @devcontainers/cli"
"postCreateCommand": "npm install -g @devcontainers/cli@0.14.1"
}
2 changes: 1 addition & 1 deletion .github/actions/smoke-test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e

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

echo "(*) Building image - ${IMAGE}"
id_label="test-container=${IMAGE}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-again.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# Setup build CLI
cd "$GITHUB_WORKSPACE/ref"
yarn install
npm install -g @devcontainers/cli
npm install -g @devcontainers/cli@0.14.1
# Go to the release, symlink the build tool from ref since this is the version for the workflow
cd "$GITHUB_WORKSPACE/release"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# Build and push dev images
yarn install
npm install -g @devcontainers/cli
npm install -g @devcontainers/cli@0.14.1
GIT_BRANCH=$(echo "${{ github.ref }}" | grep -oP 'refs/(heads|tags)/\K(.+)')
if [ "$GIT_BRANCH" == "" ]; then
GIT_BRANCH=main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# Build and push images
yarn install
npm install -g @devcontainers/cli
npm install -g @devcontainers/cli@0.14.1
build/vscdc push --page ${{ matrix.page }} \
--pageTotal ${{ matrix.page-total }} \
--release ${{ steps.get_tag_name.outputs.tag }} \
Expand Down

0 comments on commit 4848072

Please sign in to comment.