Update directory where dependency check occurs
Some checks failed
Podman Rootless Demo / test-backend (push) Failing after 36s

This commit is contained in:
continuist 2025-09-19 18:40:04 -04:00
parent ed504340b2
commit f1ee667fc2

View file

@ -49,8 +49,8 @@ jobs:
- name: Check if dependencies changed
id: check-deps
run: |
# Change to repository directory and get hash of Cargo.toml and Cargo.lock
cd "$GITHUB_WORKSPACE"
# Change to backend directory and get hash of Cargo.toml and Cargo.lock
cd "$GITHUB_WORKSPACE/backend"
DEPS_HASH=$(sha256sum Cargo.toml Cargo.lock | sha256sum | cut -d' ' -f1)
echo "deps_hash=$DEPS_HASH" >> $GITHUB_OUTPUT