chore(deps): update actions/checkout digest to b4ffde6 - autoclosed #171
Workflow file for this run
This file contains 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: ci | |
"on": | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint-unit: | |
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@2.0.6 | |
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" | |
- "amazonlinux-2023" | |
- "centos-7" | |
- "centos-stream-8" | |
- "debian-10" | |
- "debian-11" | |
- "fedora-latest" | |
- "opensuse-leap-15" | |
- "rockylinux-8" | |
- "ubuntu-1804" | |
- "ubuntu-2004" | |
- "ubuntu-2204" | |
suite: | |
- "default" | |
include: | |
- suite: "systemd-resolved" | |
os: "fedora-latest" | |
- suite: "systemd-resolved" | |
os: "ubuntu-1804" | |
- suite: "systemd-resolved" | |
os: "ubuntu-2004" | |
- suite: "systemd-resolved" | |
os: "ubuntu-2204" | |
fail-fast: false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 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 }} | |
integration-macos: | |
needs: lint-unit | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
os: | |
- "macos-latest" | |
suite: | |
- "default" | |
fail-fast: false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Install Chef | |
uses: actionshub/chef-install@2.0.4 | |
- name: test-kitchen | |
uses: actionshub/test-kitchen@2.1.0 | |
env: | |
CHEF_LICENSE: accept-no-persist | |
KITCHEN_LOCAL_YAML: kitchen.exec.yml | |
with: | |
suite: ${{ matrix.suite }} | |
os: ${{ matrix.os }} | |
# TODO: This is currently broken unrelated to this cookbook | |
# integration-freebsd: | |
# needs: lint-unit | |
# runs-on: macos-latest | |
# strategy: | |
# matrix: | |
# os: | |
# - "freebsd-12" | |
# - "freebsd-13" | |
# suite: | |
# - "default" | |
# fail-fast: false | |
# | |
# steps: | |
# - name: Check out code | |
# uses: actions/checkout@v3 | |
# - name: Install Chef | |
# uses: actionshub/chef-install@2.0.4 | |
# - name: test-kitchen | |
# uses: actionshub/test-kitchen@2.1.0 | |
# env: | |
# KITCHEN_LOCAL_YAML: kitchen.yml | |
# CHEF_LICENSE: accept-no-persist | |
# with: | |
# suite: ${{ matrix.suite }} | |
# os: ${{ matrix.os }} |