From 424b471eb8aee7dfc0ff01dd86fa6732f707fff6 Mon Sep 17 00:00:00 2001 From: Matthew Dawson Date: Sun, 22 Jan 2023 19:03:34 -0500 Subject: [PATCH] Update containers to use SDK 2.2.0 The zigbee sample no longer compiles with SDK 2.1, so update the used docker image to 2.2.0. --- .devcontainer/devcontainer.json | 4 ++-- .github/actions/build/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ea4b90d..9aed6d4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { - "name": "nrf-connect:v2.1", - "image": "nordicplayground/nrfconnect-sdk:v2.1-branch", + "name": "nrf-connect:v2.2", + "image": "nordicplayground/nrfconnect-sdk:v2.2-branch", "features": { }, "customizations": { diff --git a/.github/actions/build/Dockerfile b/.github/actions/build/Dockerfile index 8f3f60f..0f54cda 100644 --- a/.github/actions/build/Dockerfile +++ b/.github/actions/build/Dockerfile @@ -1,4 +1,4 @@ -FROM nordicplayground/nrfconnect-sdk:v2.1-branch +FROM nordicplayground/nrfconnect-sdk:v2.2-branch COPY build.sh /build.sh