From 120b64ce56e3b1653e44082c535ff388ea35a2d3 Mon Sep 17 00:00:00 2001 From: Alexander Taepper Date: Thu, 14 Nov 2024 16:17:17 +0100 Subject: [PATCH] prefix the DIR_HASH with hash- to circumvent warnings about 64-byte hex strings --- .github/workflows/dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 6d86b442a..04e0c56dc 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -20,7 +20,7 @@ jobs: - name: Generate dependency files hash id: files-hash run: | - DIR_HASH=$(echo -n ${{ hashFiles('conanfile.py', 'conanprofile.docker', '.github/workflows/ci.yml', './Dockerfile_dependencies') }}) + DIR_HASH="hash-"$(echo -n ${{ hashFiles('conanfile.py', 'conanprofile.docker', '.github/workflows/ci.yml', './Dockerfile_dependencies') }}) echo "DIR_HASH=$DIR_HASH" >> $GITHUB_ENV - name: Docker metadata