Skip to content

chore(deps): update actions/checkout action to v6 #80

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #80

Workflow file for this run

---
name: "Lint & Unit Test"
"on":
pull_request:
push:
branches: [main]
jobs:
lint-unit:
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@main
permissions:
actions: write
checks: write
pull-requests: write
statuses: write
issues: write
integration:
needs: "lint-unit"
runs-on: ubuntu-latest
strategy:
matrix:
os:
- almalinux-8
- debian-12
- oraclelinux-8
- rockylinux-8
- ubuntu-2204
- ubuntu-2404
suite:
- default
- builtin-services
exclude:
- os: ubuntu-2404
suite: builtin-services
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Install Chef
uses: actionshub/chef-install@main
- name: Dokken
uses: actionshub/test-kitchen@3.0.0
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}
- name: Print debug output on failure
if: failure()
run: |
set -x
sudo journalctl -l --since today
sudo docker version
sudo docker info
KITCHEN_LOCAL_YAML=kitchen.dokken.yml /usr/bin/kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "journalctl -l"
final:
runs-on: ubuntu-latest
needs: [integration]
if: always()
steps:
- run: 'echo "Integration result: ${{ needs.integration.result }}"'