Skip to content

Commit 386aaaf

Browse files
authored
Merge pull request #86 from ergebnis/fix/require
Fix: Require value for `working-directory` input
2 parents 9ecbefd + d5fcd64 commit 386aaaf

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
For a full diff see [`1.4.1...main`][1.4.1...main].
1010

11+
### Fixed
12+
13+
- Required a value for the `working-directory` input of the composite action `composer/determine-cache-directory` ([#82]), by [@localheinz]
14+
1115
## [`1.4.1`][1.4.1]
1216

1317
For a full diff see [`1.4.0...1.4.1`][1.4.0...1.4.1].

actions/composer/determine-cache-directory/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
working-directory:
1212
default: "."
1313
description: "Which directory to use as working directory"
14-
required: false
14+
required: true
1515

1616
runs:
1717
using: "composite"

0 commit comments

Comments
 (0)