Skip to content

Commit 8399c1f

Browse files
authored
Chore: [AEA-0000] - bump dev container and handle zizmor not existing (#140)
## Summary - Routine Change ### Details bump dev container handle zizmor binary not existing
1 parent 9564a67 commit 8399c1f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"args": {
77
"DOCKER_GID": "${env:DOCKER_GID:}",
88
"IMAGE_NAME": "node_24_python_3_14",
9-
"IMAGE_VERSION": "v1.4.4",
9+
"IMAGE_VERSION": "v1.4.8",
1010
"USER_UID": "${localEnv:USER_ID:}",
1111
"USER_GID": "${localEnv:GROUP_ID:}"
1212
},

.github/workflows/quality-checks-devcontainer.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ jobs:
4747
cp /home/vscode/.tool-versions "$HOME/.tool-versions"
4848
cp /home/vscode/.grant.yaml "$HOME/.grant.yaml"
4949
mkdir -p "$HOME/.local/bin"
50-
sudo cp /home/vscode/.local/bin/zizmor /usr/local/bin/zizmor
50+
if [ -f /home/vscode/.local/bin/zizmor ]; then
51+
sudo cp /home/vscode/.local/bin/zizmor /usr/local/bin/zizmor
52+
else
53+
echo "zizmor not found at /home/vscode/.local/bin/zizmor; skipping copy"
54+
fi
5155
5256
- &checkout
5357
name: Checkout code

0 commit comments

Comments
 (0)