Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MP91 committed Nov 1, 2024
1 parent d0f62ec commit f44943e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build-base-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,13 @@ jobs:
uses: actions/checkout@v4

- name: Run Linters
uses: pre-commit/[email protected].0
uses: pre-commit/[email protected].1

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
version: v0.9.0

- name: Get image tag
id: get-tag
Expand Down
10 changes: 5 additions & 5 deletions Dockerfiles/cpp/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"dockerfile": "Dockerfile",
"context": "../../..",
"args": {
"SDK_TAG": "v0.4.3"
"SDK_TAG": "v0.5.3"
}
},
"features": {
"ghcr.io/devcontainers/features/git:1.1.5": {
"ghcr.io/devcontainers/features/git:1.3.2": {
"ppa": true,
"version": "2.41.0"
"version": "2.47.0"
},
"ghcr.io/devcontainers/features/common-utils:2.1.2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.5.0": {}
"ghcr.io/devcontainers/features/common-utils:2.5.2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.12.0": {}
}
}
8 changes: 4 additions & 4 deletions Dockerfiles/python/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"context": "../../.."
},
"features": {
"ghcr.io/devcontainers/features/git:1.1.5": {
"ghcr.io/devcontainers/features/git:1.3.2": {
"ppa": true,
"version": "2.41.0"
"version": "2.47.0"
},
"ghcr.io/devcontainers/features/common-utils:2.1.2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.5.0": {}
"ghcr.io/devcontainers/features/common-utils:2.5.2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2.12.0": {}
}
}
4 changes: 2 additions & 2 deletions common/install-kanto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set -e
echo "#######################################################"
echo "### Install Kanto ${KANTO_VERSION} ###"
echo "#######################################################"
KANTO_VERSION='0.1.0-M3' # reference on particular release version
KANTO_VERSION='1.0.0' # reference on particular release version

ARCH=$(echo $1 | sed 's/amd64/x86_64/g')
KANTO_DOWNLOAD_URL=https://github.com/eclipse-kanto/kanto/releases/download/v${KANTO_VERSION}/kanto_${KANTO_VERSION}_linux_${ARCH}.deb
Expand All @@ -34,7 +34,7 @@ sudo dpkg -i ./kanto_${KANTO_VERSION}_linux_${ARCH}.deb
echo "#######################################################"
echo "### Install KantUI ${KANTUI_VERSION} ###"
echo "#######################################################"
KANTUI_VERSION='0.0.2' # reference on particular release version
KANTUI_VERSION='0.0.3' # reference on particular release version
KANTUI_HASH='00680'

KANTUI_DOWNLOAD_URL=https://github.com/eclipse-leda/leda-utils/releases/download/v${KANTUI_VERSION}/eclipse-leda-kantui_${KANTUI_VERSION}.0.${KANTUI_HASH}_$1.deb
Expand Down
2 changes: 1 addition & 1 deletion common/install-velocitas-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#
# SPDX-License-Identifier: Apache-2.0
set -e
CLI_INSTALL_VERSION='v0.12.0' # reference a particular released version
CLI_INSTALL_VERSION='v0.13.0' # reference a particular released version
echo "#######################################################"
echo "### Install Velocitas CLI ${CLI_INSTALL_VERSION} ###"
echo "#######################################################"
Expand Down

0 comments on commit f44943e

Please sign in to comment.