Skip to content

chore: bump actions/checkout from 4.1.7 to 4.2.0 #62

chore: bump actions/checkout from 4.1.7 to 4.2.0

chore: bump actions/checkout from 4.1.7 to 4.2.0 #62

Workflow file for this run

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 (N-2)
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: 3
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Perform ShellCheck Analysis
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/shellcheck/master/pipeline.sh)
reek:
name: Reek
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Setup Ruby ${{ matrix.ruby-versions }}
uses: ruby/setup-ruby@f321cf5a4d1533575411f8752cf25b86478b0442 # v1.193.0
with:
ruby-version: ${{ matrix.ruby-versions }}
- name: Perform Reek Analysis
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/reek/master/pipeline.sh)
cicd-pipeline:
if: always()
name: CI/CD Pipeline
needs:
- shellcheck
- reek
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Check Job Statuses
run: .github/scripts/check-jobs.sh '${{ toJson(needs) }}'