Bump whoami from 1.4.1 to 1.5.1 #759
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
# SPDX-FileCopyrightText: 2023 MTRNord | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Spell Check | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
run: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 | |
with: | |
egress-policy: block | |
allowed-endpoints: > | |
github.com:443 | |
objects.githubusercontent.com:443 | |
env: | |
USER: runner | |
- name: Checkout Actions Repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v2 | |
- name: Check spelling | |
uses: crate-ci/typos@47dd2976043bd5c76a33aa9300b328a176a1d6f7 # master | |
with: | |
config: ${{github.workspace}}/_typos.toml |