Skip to content

chore: bump ruby/setup-ruby from 1.190.0 to 1.191.0 #48

chore: bump ruby/setup-ruby from 1.190.0 to 1.191.0

chore: bump ruby/setup-ruby from 1.190.0 to 1.191.0 #48

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