Skip to content

Update checkout GHA to avoid Node16 deprecation warnings #832

Update checkout GHA to avoid Node16 deprecation warnings

Update checkout GHA to avoid Node16 deprecation warnings #832

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
jobs:
ruby:
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.0', '3.1']
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run rspec
run: ./scripts/run_chefspec
- name: Run cookstyle
run: ./scripts/run_cookstyle
kitchen:
strategy:
fail-fast: false
matrix:
os:
- centos-7
- centos-stream-8
- ubuntu-1804
- ubuntu-2004
- debian-9
- debian-10
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/[email protected]
with:
project: chef-workstation
version: 20.11.180
- name: Run Kitchen
uses: actionshub/[email protected]
with:
suite: default
os: ${{ matrix.os }}
env:
CHEF_LICENSE: accept-no-persist
CHEF_VERSION: 16.18.0
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Shellcheck
uses: ludeeus/[email protected]