Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.

Adding fixed events for ruby-3.2 #57369

Adding fixed events for ruby-3.2

Adding fixed events for ruby-3.2 #57369

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- 'main'
push:
branches:
- gh-readonly-queue/main/**
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
# this need to point to main to always get the latest action
- uses: wolfi-dev/actions/wolfictl-lint@main # main
with:
run_wolfictl_lint_yam: 'true'
run_wolfictl_lint: 'false'
misspell:
name: Misspell
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: step-security/action-misspell@185febccfc9a0598c17a34b579cc7e64a54afc6d # v1.27.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
fail_on_error: true
locale: "US"