Skip to content

Bump github/codeql-action from 3.25.5 to 3.25.6 #548

Bump github/codeql-action from 3.25.5 to 3.25.6

Bump github/codeql-action from 3.25.5 to 3.25.6 #548

Workflow file for this run

name: Codespell
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
# Start the job on all push #
on:
push:
pull_request:
workflow_dispatch:
#concurrency:
# group: ${{ github.workflow }}
# cancel-in-progress: true
permissions: read-all
# Set the Job #
jobs:
build:
name: Codespell
# Set the agent to run on
runs-on: ubuntu-24.04
# Load all steps #
steps:
# Checkout the code base #
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v1
with:
egress-policy: block
disable-telemetry: true
allowed-endpoints:
github.com:443
- name: Checkout Code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v2.4.0
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
# Run Linter against code base #
- name: Codespell
uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 # master
with:
check_filenames: true
ignore_words_file: .codespellignore