We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e323ad2 commit ef1d280Copy full SHA for ef1d280
action.yml
@@ -261,14 +261,11 @@ runs:
261
shell: nu {0}
262
run: |-
263
let action_path = $env.GITHUB_ACTION_PATH | path expand
264
- let req_file = $action_path | path join 'requirements.txt'
265
let lock_file = $action_path | path join 'uv.lock'
266
let action_file = $action_path | path join 'action.yml'
267
let key = (
268
if ($lock_file | path exists) {
269
open $lock_file --raw | hash sha256
270
- } else if ($req_file | path exists) {
271
- open $req_file --raw | hash sha256
272
} else {
273
open $action_file --raw | hash sha256
274
}
0 commit comments