Skip to content

Commit 874ffcf

Browse files
authored
fix(checksum): include toml gradle versions (#7)
1 parent bfc92e1 commit 874ffcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

checksum/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ description: 'Generates checksum for caching'
33
runs:
44
using: "composite"
55
steps:
6-
- run: find . -type f -name "*.gradle*" -o -name "gradle-wrapper*" -o -path "./gradle/*"| xargs shasum | sort > checksum.txt && cat checksum.txt
6+
- run: find . -type f -name "*.gradle*" -o -name "gradle-wrapper*" -o -name "*.toml" | xargs shasum | sort > checksum.txt && cat checksum.txt
77
shell: bash

0 commit comments

Comments
 (0)