Skip to content

Commit ca48ef6

Browse files
authored
Fix inputs to glob.hashFiles
1 parent 62f89fa commit ca48ef6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
- uses: actions/github-script@v7
5656
with:
5757
script: |
58-
console.log(glob.hashFiles(["test-requirements.txt"]))
59-
console.log(glob.hashFiles(["./test-requirements.txt"]))
60-
console.log(glob.hashFiles(["**/requirements.txt"])) // default
58+
console.log(await glob.hashFiles("test-requirements.txt"))
59+
console.log(await glob.hashFiles("./test-requirements.txt"))
60+
console.log(await glob.hashFiles("**/requirements.txt")) // default
6161
- name: Setup python
6262
uses: actions/setup-python@v5
6363
with:

0 commit comments

Comments
 (0)