Fix directory where dependency check is performed from
Some checks failed
Podman Rootless Demo / test-backend (push) Failing after 36s

This commit is contained in:
continuist 2025-09-19 18:37:58 -04:00
parent 23a8281f5f
commit ed504340b2

View file

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