ForNeVeR / ForNeVeR/Generaptor
Order in options
Open
enhancement
good first issue
help wanted
- Dominant language
- F#
- Stars
- 50
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
```fsharp
step(
name = "Cache artifacts",
uses = "actions/cache@v4",
options = Map.ofList [
"path", "artifacts"
"key", $"{platform}.{architecture}." + "${{ hashFiles('.github/cache-key.json') }}"
]
)
```
This leads to
```yml
- name: Cache artifacts
uses: actions/cache@v4
with:
key: linux.x86-64.${{ hashFiles('.github/cache-key.json') }}
path: artifacts
```
The order of options is reversed. We should consider an order-preserving variant if possible.
Contributor guide
Assessment
This issue has not been assessed yet.