Skip to content

Update actions/checkout action to v4 #83

Update actions/checkout action to v4

Update actions/checkout action to v4 #83

Workflow file for this run

---
name: ci
"on":
pull_request:
push:
branches: [master]
jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run Chef Delivery
uses: actionshub/chef-delivery@main
env: { CHEF_LICENSE: accept-no-persist }
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, delivery]
runs-on: ubuntu-latest
strategy:
matrix:
os:
- amazonlinux-2
- centos-7
- centos-8
- debian-9
- debian-10
- fedora-latest
- ubuntu-2004
- ubuntu-2104
suite: ["server"]
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/chef-install@2.0.4
- name: Dokken
uses: actionshub/test-kitchen@2.1.0
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}