Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update versions #77

Merged
merged 7 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": "version-bump"
}
},
"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": {}
}
}
6 changes: 3 additions & 3 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,8 +34,8 @@ 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_HASH='00680'
KANTUI_VERSION='0.0.3' # reference on particular release version
KANTUI_HASH='861'

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
Loading