From f44943e907446573167482712cd3d71ba70abe09 Mon Sep 17 00:00:00 2001 From: Markus Petke Date: Fri, 1 Nov 2024 11:34:03 +0100 Subject: [PATCH] update versions --- .github/workflows/build-base-images.yml | 4 +--- Dockerfiles/cpp/.devcontainer/devcontainer.json | 10 +++++----- Dockerfiles/python/.devcontainer/devcontainer.json | 8 ++++---- common/install-kanto.sh | 4 ++-- common/install-velocitas-cli.sh | 2 +- 5 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-base-images.yml b/.github/workflows/build-base-images.yml index 408f747..f125485 100644 --- a/.github/workflows/build-base-images.yml +++ b/.github/workflows/build-base-images.yml @@ -44,15 +44,13 @@ jobs: uses: actions/checkout@v4 - name: Run Linters - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.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 diff --git a/Dockerfiles/cpp/.devcontainer/devcontainer.json b/Dockerfiles/cpp/.devcontainer/devcontainer.json index 0b2be7d..85481ad 100644 --- a/Dockerfiles/cpp/.devcontainer/devcontainer.json +++ b/Dockerfiles/cpp/.devcontainer/devcontainer.json @@ -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": {} } } diff --git a/Dockerfiles/python/.devcontainer/devcontainer.json b/Dockerfiles/python/.devcontainer/devcontainer.json index 079b3a5..110cafa 100644 --- a/Dockerfiles/python/.devcontainer/devcontainer.json +++ b/Dockerfiles/python/.devcontainer/devcontainer.json @@ -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": {} } } diff --git a/common/install-kanto.sh b/common/install-kanto.sh index 8bd42a4..3640bae 100755 --- a/common/install-kanto.sh +++ b/common/install-kanto.sh @@ -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 @@ -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 diff --git a/common/install-velocitas-cli.sh b/common/install-velocitas-cli.sh index 5db9414..2f5c486 100755 --- a/common/install-velocitas-cli.sh +++ b/common/install-velocitas-cli.sh @@ -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 "#######################################################"