vendor: actions/cache v4 runtime snapshot
Code scanning - action / CodeQL-Build (push) Canceled after 0s

This commit is contained in:
Compass CI
2026-07-23 10:08:43 +08:00
commit 44adfa90b5
124 changed files with 293079 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
# Validate args
prefix="$1"
if [ -z "$prefix" ]; then
echo "Must supply prefix argument"
exit 1
fi
path="$2"
if [ -z "$path" ]; then
echo "Must supply path argument"
exit 1
fi
mkdir -p $path
echo "$prefix $GITHUB_RUN_ID" > $path/test-file.txt