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

Bump tj-actions/changed-files from 40 to 41 #267

Merged
merged 1 commit into from
Jan 2, 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/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@

- name: Get changed files
id: detect-changes
uses: tj-actions/changed-files@v40
uses: tj-actions/changed-files@v41
with:
files: |
**/*.md

- name: Print changed files
run: |
for file in ${{ steps.changed-files-specific.outputs.all_changed_files }}; do

Check warning on line 31 in .github/workflows/markdown.yml

View workflow job for this annotation

GitHub Actions / Lint code

31:81 [line-length] line too long (87 > 80 characters)
echo "$file"
done

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

- name: Get changed files
id: detect-changes
uses: tj-actions/changed-files@v40
uses: tj-actions/changed-files@v41
with:
files: |
**/*.rs
Expand All @@ -33,7 +33,7 @@

- name: Print changed files
run: |
for file in ${{ steps.changed-files-specific.outputs.all_changed_files }}; do

Check warning on line 36 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / Lint code

36:81 [line-length] line too long (87 > 80 characters)
echo "$file"
done

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

- name: Get changed files
id: detect-changes
uses: tj-actions/changed-files@v40
uses: tj-actions/changed-files@v41
with:
files: |
**/*.yaml
Expand All @@ -29,7 +29,7 @@

- name: Print changed files
run: |
for file in ${{ steps.changed-files-specific.outputs.all_changed_files }}; do

Check warning on line 32 in .github/workflows/yaml.yml

View workflow job for this annotation

GitHub Actions / Lint code

32:81 [line-length] line too long (87 > 80 characters)
echo "$file"
done

Expand Down
Loading