docker: bump jauderho/alpine from 3e7fb72
to 620ca62
#2017
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@446798f8213ac2e75931c1b0769676d927801858 # v1 | |
with: | |
egress-policy: block | |
disable-telemetry: true | |
allowed-endpoints: | |
github.com:443 | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 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@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # master | |
with: | |
check_filenames: true | |
ignore_words_file: .codespellignore |