Relative Content

Tag Archive for yamlcontinuous-integrationgithub-actionscustom-action

Error on Custom Action use (Unexpected type ” encountered while reading ‘action manifest root’. The type ‘MappingToken’ was expected.)

<project-dir-name>/ ├── .github/ │ ├── actions/ │ │ └── cached-deps/ │ │ ├── action.yml └── .github/ └── workflows/ └── main.yml Here is the custom action for dependencies getting and caching (action.yml): name: “Get & cache dependencies” description: “Get the dependencies and cache them.” runs: using: “composite” steps: – name: “Cache dependencies” id: cache uses: “actions/cache@v3” […]