build(deps): bump sigs.k8s.io/yaml from 1.5.0 to 1.6.0 #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Azure DevOps Task | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| task: | ||
| description: Task from Tasks/ directory in https://github.com/microsoft/azure-pipelines-tasks. | ||
| required: true | ||
| execution: | ||
| description: Task execution. | ||
| required: true | ||
| default: node16 | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| task: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| repository: microsoft/azure-pipelines-tasks | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 10 | ||
| cache: npm | ||
| cache-dependency-path: package-lock.json | ||
| - run: npm ci | ||
| - run: node make.js build --task ${{ inputs.task }} | ||
| - uses: frantjc/forge@${{ github.sha }} | ||
| - run: forge task -e ${{ inputs.execution }} ${{ inputs.task }} | ||