Skip to content

Bump step-security/harden-runner from 2.7.1 to 2.8.0 #551

Bump step-security/harden-runner from 2.7.1 to 2.8.0

Bump step-security/harden-runner from 2.7.1 to 2.8.0 #551

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@f086349bfa2bd1361f7909c78558e816508cdc10 # 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