chore: bump actions/checkout from 4.2.2 to 5.0.0 #191
This file contains hidden or 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/CD Pipeline | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.cff' | |
pull_request: | |
branches: | |
- '**' | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.cff' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
get-ruby-versions: | |
name: Get Ruby Versions | |
runs-on: ubuntu-latest | |
outputs: | |
version-matrix: ${{ steps.get-language-versions.outputs.latest-versions }} | |
steps: | |
- name: Get Required Versions | |
uses: ActionsToolbox/get-language-versions-action@446919617fd774095b5dd3ed71c39dd3fd0d8f4f # v0.1.3 | |
id: get-language-versions | |
with: | |
language: "ruby" | |
remove-patch-version: true | |
max-versions: 5 | |
max-version: 3.3 | |
shellcheck: | |
name: ShellCheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Perform ShellCheck Analysis | |
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/shellcheck/master/pipeline.sh) | |
puppet-lint: | |
name: Puppet Lint | |
needs: get-ruby-versions | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-versions: ${{ fromJson(needs.get-ruby-versions.outputs.version-matrix) }} | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Setup Ruby ${{ matrix.ruby-versions }} | |
uses: ruby/setup-ruby@44511735964dcb71245e7e55f72539531f7bc0eb # v1.257.0 | |
with: | |
ruby-version: ${{ matrix.ruby-versions }} | |
- name: Perform Puppet Lint Analysis | |
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/puppet-lint/master/pipeline.sh) | |
cicd-pipeline: | |
if: always() | |
name: CI/CD Pipeline | |
needs: | |
- shellcheck | |
- puppet-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Check Job Statuses | |
run: .github/scripts/check-jobs.sh '${{ toJson(needs) }}' |