Skip to content

Update actions/checkout action to v4 (#58) #106

Update actions/checkout action to v4 (#58)

Update actions/checkout action to v4 (#58) #106

Workflow file for this run

---
name: ci
"on":
pull_request:
push:
branches:
- main
jobs:
lint-unit:

Check failure on line 11 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 11, Col: 3): Error calling workflow 'sous-chefs/.github/.github/workflows/lint-unit.yml@2.0.6'. The nested job 'check-metadata' is requesting 'checks: write, pull-requests: write, statuses: write', but is only allowed 'checks: none, pull-requests: none, statuses: none'.
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@2.0.6
yamllint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run yaml Lint
uses: actionshub/yamllint@main
mdl:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run Markdown Lint
uses: actionshub/markdownlint@main
integration:
needs: [mdl, yamllint, lint-unit]
runs-on: windows-latest
strategy:
matrix:
os:
- 'windows-2019'
- 'windows-2022'
suite:
- 'vc6'
- 'vc9'
- 'vc10'
- 'vc11'
- 'vc12'
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/chef-install@main
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
- name: Kitchen Exec
uses: actionshub/test-kitchen@main
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.exec.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}