From 5767a35e49db3c13d7dd0d55a17d4fb3654ed163 Mon Sep 17 00:00:00 2001 From: Egon Braun Date: Tue, 5 May 2026 10:54:28 +0200 Subject: [PATCH 1/3] doc: update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d94659..3d8b351 100644 --- a/README.md +++ b/README.md @@ -41,14 +41,14 @@ Example of using this image directly in your `.devcontainer/devcontainer.json`: ```json { - "image": "ghcr.io/schubergphilis/devcontainer:latest" + "image": "ghcr.io/schubergphilis/devcontainer:1.2.0" } ``` You can also use it as a base image in your `Dockerfile`: ``` -FROM ghcr.io/schubergphilis/devcontainer:latest +FROM ghcr.io/schubergphilis/devcontainer:1.2.0 ``` ## Installed Software From 248a9b99ff43ef6d11a5ba02b8869bc877f17ea2 Mon Sep 17 00:00:00 2001 From: Egon Braun Date: Tue, 5 May 2026 11:00:35 +0200 Subject: [PATCH 2/3] fix: add claude code vscode extension --- .devcontainer/devcontainer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5796b7b..8aa0706 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,6 +11,7 @@ "customizations": { "vscode": { "extensions": [ + "Anthropic.claude-code", "eamodio.gitlens", "EditorConfig.EditorConfig", "esbenp.prettier-vscode", From 3717f4b443638aafdd0dde21bb8a5c4b2aff436d Mon Sep 17 00:00:00 2001 From: Egon Braun Date: Tue, 5 May 2026 11:00:53 +0200 Subject: [PATCH 3/3] fix: add permissions to cd job --- .github/workflows/pipeline.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index d0b1121..161ce8c 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -147,6 +147,9 @@ jobs: runs-on: ubuntu-24.04-arm needs: [ci-amd, ci-arm] if: ${{ startsWith(github.ref, 'refs/tags/v') }} + permissions: + packages: write + contents: read steps: - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2