Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update tj-actions/changed-files action to v44 #2170

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/get-changed-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ jobs:
fetch-depth: 2

- name: Check if component (`src` directory) files have changed
uses: tj-actions/changed-files@v43
uses: tj-actions/changed-files@v44
id: component-files-changed
# Return 'true' for any directories listed here that changed
with:
files: |
src/**

- name: Check if docs (`docs` directory) files have changed
uses: tj-actions/changed-files@v43
uses: tj-actions/changed-files@v44
id: docs-files-changed
# Return 'true' for any directories listed here that changed
with:
files: |
docs/**

- name: Check if files changed in `src/`, `docs/`, or `cypress/` directories
uses: tj-actions/changed-files@v43
uses: tj-actions/changed-files@v44
id: components-or-docs-or-cypress-files-changed
# Return 'true' for any directories listed here that changed
with:
Expand All @@ -59,7 +59,7 @@ jobs:
cypress/**

- name: Check if package.json or pnpm.lock files changed
uses: tj-actions/changed-files@v43
uses: tj-actions/changed-files@v44
id: package-json-pnpm-lock-files-changed
# Return 'true' for any directories listed here that changed
with:
Expand Down