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: replace unmaintained jitterbit/get-changed-files@v1 #11949

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/git-diff-on-components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This action takes care of all components with dependencies that were modified bu

### `all_files`

**Required** List of all files comming from `changed_files` step in `check_version` job github action workflow. It is necessary to set the action `jitterbit/get-changed-files@v1` output in json format like
**Required** List of all files comming from `changed_files` step in `check_version` job github action workflow. It is necessary to set the action `Ana06/get-changed-files@v2.3.0` output in json format like
```
...
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/components-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# we have to fetch the entire history. See
# https://github.com/actions/checkout/issues/266#issuecomment-638346893
fetch-depth: 0
- uses: jitterbit/get-changed-files@v1
- uses: Ana06/get-changed-files@v2.3.0
id: changed_files
name: Get changed files
with:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
run: npm run build > files.txt
- name: Get Changed Files
id: files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
- name: Check For Compiled TypeScript Files
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
run: npm run build > files.txt
- name: Get Changed Files
id: files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
- name: Publish TypeScript components (dry run)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
echo "org_id = $PD_ORG_ID" >> $HOME/.config/pipedream/config
- name: Get Changed Files
id: files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
- name: Publish and add to registry components/*.*js (that aren't .app.js files)
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
run: npm run build > files.txt
- name: Get Changed Files
id: files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
- name: Publish TypeScript components (dry run)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-marketplace-content.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cache: 'pnpm'
- name: Get Changed Files
id: files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
- name: Publish changes to marketplace content
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.5
name: Checkout
- uses: jitterbit/get-changed-files@v1
- uses: Ana06/get-changed-files@v2.3.0
id: changed_files
name: Get changed files
- id: md_changed_files
Expand Down Expand Up @@ -90,14 +90,14 @@ jobs:
# ESLint only on changed files (not the same as the above super-linter)
- name: Get Changed Files (space-separated)
id: changed_files_space
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'space-delimited'
- name: Lint changed files
run: npx eslint --quiet ${{ steps.changed_files_space.outputs.added_modified }} ${{ steps.changed_files_space.outputs.renamed }}
- name: Get Changed Files (comma-separated)
id: changed_files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.3.0
with:
format: 'csv'
# NOTE: These steps are kept in this workflow to avoid re-rerunning the rest of the lint job
Expand Down
Loading