Skip to content

Bump tj-actions/changed-files from 46.0.4 to 46.0.5 #509

Bump tj-actions/changed-files from 46.0.4 to 46.0.5

Bump tj-actions/changed-files from 46.0.4 to 46.0.5 #509

Workflow file for this run

name: Spellcheck Action
on: push
jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Get all changed markdown files
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
id: changed_files
with:
files: |
**.md
- name: Run Spellcheck
id: spellcheck
uses: rojopolis/spellcheck-github-actions@v0
with:
task_name: Markdown
source_files: ${{ steps.changed_files.outputs.all_changed_files }}
output_file: spellcheck-output.txt
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: '!cancelled()'
with:
name: Spellcheck Output
path: spellcheck-output.txt